-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
87 lines (60 loc) · 1.88 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
source "https://rubygems.org"
gem "rake", "~> 12.0.0"
# Tests
gem "minitest", "~> 5.10.1"
# CLI helper for running tests
gem "minitest-sprint", "~> 1.2.0"
# More test outputs
gem "minitest-reporters", "~> 1.1.14"
# For an "after_all" callback.
gem "minitest-hooks", "~> 1.4.0"
# Test metadata for CI environment.
gem "minitest-ci", "~> 3.2.0"
# Ruby lint/style checker
gem "rubocop", "~> 0.49.1", :require => false
# Running background processes
gem "childprocess", "~> 0.7.1"
# Making HTTP requests
gem "typhoeus", "~> 1.1.2"
# JSON parsing
gem "multi_json", "~> 1.12.1"
gem "oj", "~> 3.3.2"
# Database libraries
gem "mongoid", "~> 6.2.0"
gem "elasticsearch", "~> 2.0.2"
gem "elasticsearch-persistence", "~> 0.1.9"
# Factories for test database data
gem "factory_girl", "~> 4.8.0"
# Deleting database data between tests.
gem "database_cleaner", "~> 1.6.1"
# Programmatically generate Rails session cookies.
gem "rails_compatible_cookies_utils", "~> 0.1.0"
# URL parsing/generation
gem "addressable", "~> 2.5.1"
# Browser/JavaScript integration tests
gem "capybara", "~> 2.14.4"
# Use fork to fix failure messages:
# https://github.com/wojtekmach/minitest-capybara/pull/17
gem "minitest-capybara", "~> 0.8.2", :git => "https://github.com/GUI/minitest-capybara.git"
# Webkit-based driver for capybara
gem "poltergeist", "~> 1.15.0"
# Take screenshots on capybara test failures
gem "capybara-screenshot", "~> 1.0.14"
# HTML or XML parsing
gem "nokogiri", "~> 1.8.1"
# Useful additions
gem "activesupport", "~> 5.1.2"
# Path-based setting of hashes
gem "lazyhash", "~> 0.1.1"
# Generating fake strings and data.
gem "faker", "~> 1.8.3"
# Concurrency helpers.
gem "concurrent-ruby", "~> 1.0.5"
# Time zone randomization for tests.
gem "zonebie", "~> 0.6.1"
# Encrypting admin passwords.
gem "bcrypt", "~> 3.1.11"
# Color output
gem "rainbow", "~> 2.2.1"
# Debug printing
gem "awesome_print", "~> 1.8.0"