shoulda 3.4.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -7
  3. data/.hound.yml +3 -0
  4. data/.rubocop.yml +192 -0
  5. data/.ruby-version +1 -0
  6. data/.travis.yml +33 -2
  7. data/Appraisals +109 -8
  8. data/CHANGELOG.md +10 -0
  9. data/CONTRIBUTING.md +6 -1
  10. data/Gemfile +13 -0
  11. data/README.md +67 -74
  12. data/Rakefile +24 -10
  13. data/gemfiles/rails_4_2.gemfile +34 -0
  14. data/gemfiles/rails_4_2.gemfile.lock +240 -0
  15. data/gemfiles/rails_5_0.gemfile +32 -0
  16. data/gemfiles/rails_5_0.gemfile.lock +232 -0
  17. data/gemfiles/rails_5_1.gemfile +33 -0
  18. data/gemfiles/rails_5_1.gemfile.lock +247 -0
  19. data/gemfiles/rails_5_2.gemfile +35 -0
  20. data/gemfiles/rails_5_2.gemfile.lock +266 -0
  21. data/gemfiles/rails_6_0.gemfile +37 -0
  22. data/gemfiles/rails_6_0.gemfile.lock +291 -0
  23. data/lib/shoulda/version.rb +1 -1
  24. data/script/install_gems_in_all_appraisals +16 -0
  25. data/script/run_all_tests +16 -0
  26. data/script/supported_ruby_versions +7 -0
  27. data/script/update_gem_in_all_appraisals +17 -0
  28. data/script/update_gems_in_all_appraisals +16 -0
  29. data/shoulda.gemspec +23 -23
  30. data/test/acceptance/integrates_with_rails_test.rb +580 -0
  31. data/test/acceptance_test_helper.rb +43 -0
  32. data/test/support/acceptance/add_shoulda_to_project.rb +73 -0
  33. data/test/support/acceptance/helpers/array_helpers.rb +13 -0
  34. data/test/support/acceptance/helpers/pluralization_helpers.rb +13 -0
  35. data/test/support/acceptance/matchers/have_output.rb +33 -0
  36. data/test/support/acceptance/matchers/indicate_that_tests_were_run.rb +109 -0
  37. data/test/support/acceptance/rails_application_with_shoulda.rb +47 -0
  38. data/test/support/current_bundle.rb +61 -0
  39. data/test/support/snowglobe.rb +5 -0
  40. data/test/test_helper.rb +23 -0
  41. metadata +61 -153
  42. data/features/rails_integration.feature +0 -87
  43. data/features/step_definitions/rails_steps.rb +0 -77
  44. data/features/support/env.rb +0 -14
  45. data/gemfiles/3.0.gemfile +0 -7
  46. data/gemfiles/3.0.gemfile.lock +0 -127
  47. data/gemfiles/3.1.gemfile +0 -9
  48. data/gemfiles/3.1.gemfile.lock +0 -149
  49. data/gemfiles/3.2.gemfile +0 -9
  50. data/gemfiles/3.2.gemfile.lock +0 -146
data/Rakefile CHANGED
@@ -1,17 +1,31 @@
1
1
  require 'bundler/setup'
2
2
  require 'bundler/gem_tasks'
3
- require 'cucumber/rake/task'
4
- require 'appraisal'
3
+ require 'rake/testtask'
4
+ require 'pry-byebug'
5
5
 
6
- Cucumber::Rake::Task.new do |t|
7
- t.fork = true
8
- t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'progress')]
6
+ require_relative 'test/support/current_bundle'
7
+
8
+ Rake::TestTask.new do |t|
9
+ t.libs << 'test'
10
+ t.ruby_opts += ['-w']
11
+ t.pattern = 'test/**/*_test.rb'
12
+ t.verbose = false
9
13
  end
10
14
 
11
- desc 'Test the plugin under all supported Rails versions.'
12
- task :all => ["appraisal:cleanup", "appraisal:install"] do
13
- exec('rake appraisal cucumber')
15
+ task :default do
16
+ if Tests::CurrentBundle.instance.appraisal_in_use?
17
+ Rake::Task['test'].invoke
18
+ elsif ENV['CI']
19
+ exec 'appraisal install && appraisal rake --trace'
20
+ else
21
+ appraisal = Tests::CurrentBundle.instance.latest_appraisal
22
+ exec "appraisal install && appraisal #{appraisal} rake --trace"
23
+ end
14
24
  end
15
25
 
16
- desc 'Default: run cucumber features'
17
- task :default => [:all]
26
+ namespace :appraisal do
27
+ task :list do
28
+ appraisals = Tests::CurrentBundle.instance.available_appraisals
29
+ puts "Valid appraisals: #{appraisals.join(', ')}"
30
+ end
31
+ end
@@ -0,0 +1,34 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 2.1"
6
+ gem "bundler", "~> 1.0"
7
+ gem "m"
8
+ gem "minitest", "~> 5.0"
9
+ gem "minitest-reporters"
10
+ gem "mry"
11
+ gem "pry", "~> 0.12.0"
12
+ gem "pry-byebug", "~> 3.6.0"
13
+ gem "rubocop", "0.71.0", require: false
14
+ gem "rubocop-rails", require: false
15
+ gem "snowglobe", ">= 0.3.0"
16
+ gem "warnings_logger"
17
+ gem "sqlite3", "~> 1.3.6"
18
+ gem "rubyzip", "~> 1.3.0"
19
+ gem "spring"
20
+ gem "spring-commands-rspec"
21
+ gem "rails", "~> 4.2.10"
22
+ gem "sass-rails", "~> 5.0"
23
+ gem "uglifier", ">= 1.3.0"
24
+ gem "coffee-rails", "~> 4.1.0"
25
+ gem "jquery-rails"
26
+ gem "turbolinks"
27
+ gem "jbuilder", "~> 2.0"
28
+ gem "sdoc", "~> 0.4.0", group: :doc
29
+ gem "bcrypt", "~> 3.1.7"
30
+ gem "activeresource", "4.0.0"
31
+ gem "json", "~> 1.4"
32
+ gem "protected_attributes", "~> 1.0.6"
33
+
34
+ gemspec path: "../"
@@ -0,0 +1,240 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ shoulda (4.0.0)
5
+ shoulda-context (~> 2.0)
6
+ shoulda-matchers (~> 4.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.2.11.1)
12
+ actionpack (= 4.2.11.1)
13
+ actionview (= 4.2.11.1)
14
+ activejob (= 4.2.11.1)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ actionpack (4.2.11.1)
18
+ actionview (= 4.2.11.1)
19
+ activesupport (= 4.2.11.1)
20
+ rack (~> 1.6)
21
+ rack-test (~> 0.6.2)
22
+ rails-dom-testing (~> 1.0, >= 1.0.5)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
+ actionview (4.2.11.1)
25
+ activesupport (= 4.2.11.1)
26
+ builder (~> 3.1)
27
+ erubis (~> 2.7.0)
28
+ rails-dom-testing (~> 1.0, >= 1.0.5)
29
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
30
+ activejob (4.2.11.1)
31
+ activesupport (= 4.2.11.1)
32
+ globalid (>= 0.3.0)
33
+ activemodel (4.2.11.1)
34
+ activesupport (= 4.2.11.1)
35
+ builder (~> 3.1)
36
+ activerecord (4.2.11.1)
37
+ activemodel (= 4.2.11.1)
38
+ activesupport (= 4.2.11.1)
39
+ arel (~> 6.0)
40
+ activeresource (4.0.0)
41
+ activemodel (~> 4.0)
42
+ activesupport (~> 4.0)
43
+ rails-observers (~> 0.1.1)
44
+ activesupport (4.2.11.1)
45
+ i18n (~> 0.7)
46
+ minitest (~> 5.1)
47
+ thread_safe (~> 0.3, >= 0.3.4)
48
+ tzinfo (~> 1.1)
49
+ ansi (1.5.0)
50
+ appraisal (2.2.0)
51
+ bundler
52
+ rake
53
+ thor (>= 0.14.0)
54
+ arel (6.0.4)
55
+ ast (2.4.0)
56
+ bcrypt (3.1.13)
57
+ builder (3.2.4)
58
+ byebug (10.0.2)
59
+ coderay (1.1.2)
60
+ coffee-rails (4.1.1)
61
+ coffee-script (>= 2.2.0)
62
+ railties (>= 4.0.0, < 5.1.x)
63
+ coffee-script (2.4.1)
64
+ coffee-script-source
65
+ execjs
66
+ coffee-script-source (1.12.2)
67
+ concurrent-ruby (1.1.6)
68
+ crass (1.0.6)
69
+ erubis (2.7.0)
70
+ execjs (2.7.0)
71
+ ffi (1.12.2)
72
+ globalid (0.4.2)
73
+ activesupport (>= 4.2.0)
74
+ i18n (0.9.5)
75
+ concurrent-ruby (~> 1.0)
76
+ jaro_winkler (1.5.4)
77
+ jbuilder (2.9.1)
78
+ activesupport (>= 4.2.0)
79
+ jquery-rails (4.3.5)
80
+ rails-dom-testing (>= 1, < 3)
81
+ railties (>= 4.2.0)
82
+ thor (>= 0.14, < 2.0)
83
+ json (1.8.6)
84
+ loofah (2.4.0)
85
+ crass (~> 1.0.2)
86
+ nokogiri (>= 1.5.9)
87
+ m (1.5.1)
88
+ method_source (>= 0.6.7)
89
+ rake (>= 0.9.2.2)
90
+ mail (2.7.1)
91
+ mini_mime (>= 0.1.1)
92
+ method_source (0.9.2)
93
+ mini_mime (1.0.2)
94
+ mini_portile2 (2.4.0)
95
+ minitest (5.14.0)
96
+ minitest-reporters (1.4.2)
97
+ ansi
98
+ builder
99
+ minitest (>= 5.0)
100
+ ruby-progressbar
101
+ mry (0.78.0.0)
102
+ rubocop (>= 0.41.0)
103
+ nokogiri (1.10.9)
104
+ mini_portile2 (~> 2.4.0)
105
+ parallel (1.19.1)
106
+ parser (2.7.1.0)
107
+ ast (~> 2.4.0)
108
+ protected_attributes (1.0.9)
109
+ activemodel (>= 4.0.1, < 5.0)
110
+ pry (0.12.2)
111
+ coderay (~> 1.1.0)
112
+ method_source (~> 0.9.0)
113
+ pry-byebug (3.6.0)
114
+ byebug (~> 10.0)
115
+ pry (~> 0.10)
116
+ rack (1.6.13)
117
+ rack-test (0.6.3)
118
+ rack (>= 1.0)
119
+ rails (4.2.11.1)
120
+ actionmailer (= 4.2.11.1)
121
+ actionpack (= 4.2.11.1)
122
+ actionview (= 4.2.11.1)
123
+ activejob (= 4.2.11.1)
124
+ activemodel (= 4.2.11.1)
125
+ activerecord (= 4.2.11.1)
126
+ activesupport (= 4.2.11.1)
127
+ bundler (>= 1.3.0, < 2.0)
128
+ railties (= 4.2.11.1)
129
+ sprockets-rails
130
+ rails-deprecated_sanitizer (1.0.3)
131
+ activesupport (>= 4.2.0.alpha)
132
+ rails-dom-testing (1.0.9)
133
+ activesupport (>= 4.2.0, < 5.0)
134
+ nokogiri (~> 1.6)
135
+ rails-deprecated_sanitizer (>= 1.0.1)
136
+ rails-html-sanitizer (1.3.0)
137
+ loofah (~> 2.3)
138
+ rails-observers (0.1.5)
139
+ activemodel (>= 4.0)
140
+ railties (4.2.11.1)
141
+ actionpack (= 4.2.11.1)
142
+ activesupport (= 4.2.11.1)
143
+ rake (>= 0.8.7)
144
+ thor (>= 0.18.1, < 2.0)
145
+ rainbow (3.0.0)
146
+ rake (13.0.1)
147
+ rb-fsevent (0.10.3)
148
+ rb-inotify (0.10.1)
149
+ ffi (~> 1.0)
150
+ rdoc (4.3.0)
151
+ rubocop (0.71.0)
152
+ jaro_winkler (~> 1.5.1)
153
+ parallel (~> 1.10)
154
+ parser (>= 2.6)
155
+ rainbow (>= 2.2.2, < 4.0)
156
+ ruby-progressbar (~> 1.7)
157
+ unicode-display_width (>= 1.4.0, < 1.7)
158
+ rubocop-rails (2.0.1)
159
+ rack (>= 1.1)
160
+ rubocop (>= 0.70.0)
161
+ ruby-progressbar (1.10.1)
162
+ rubyzip (1.3.0)
163
+ sass (3.7.4)
164
+ sass-listen (~> 4.0.0)
165
+ sass-listen (4.0.0)
166
+ rb-fsevent (~> 0.9, >= 0.9.4)
167
+ rb-inotify (~> 0.9, >= 0.9.7)
168
+ sass-rails (5.0.7)
169
+ railties (>= 4.0.0, < 6)
170
+ sass (~> 3.1)
171
+ sprockets (>= 2.8, < 4.0)
172
+ sprockets-rails (>= 2.0, < 4.0)
173
+ tilt (>= 1.1, < 3)
174
+ sdoc (0.4.2)
175
+ json (~> 1.7, >= 1.7.7)
176
+ rdoc (~> 4.0)
177
+ shoulda-context (2.0.0)
178
+ shoulda-matchers (4.3.0)
179
+ activesupport (>= 4.2.0)
180
+ snowglobe (0.3.0)
181
+ spring (2.1.0)
182
+ spring-commands-rspec (1.0.4)
183
+ spring (>= 0.9.1)
184
+ sprockets (3.7.2)
185
+ concurrent-ruby (~> 1.0)
186
+ rack (> 1, < 3)
187
+ sprockets-rails (3.2.1)
188
+ actionpack (>= 4.0)
189
+ activesupport (>= 4.0)
190
+ sprockets (>= 3.0.0)
191
+ sqlite3 (1.3.13)
192
+ thor (1.0.1)
193
+ thread_safe (0.3.6)
194
+ tilt (2.0.10)
195
+ turbolinks (5.2.1)
196
+ turbolinks-source (~> 5.2)
197
+ turbolinks-source (5.2.0)
198
+ tzinfo (1.2.7)
199
+ thread_safe (~> 0.1)
200
+ uglifier (4.2.0)
201
+ execjs (>= 0.3.0, < 3)
202
+ unicode-display_width (1.6.1)
203
+ warnings_logger (0.1.0)
204
+
205
+ PLATFORMS
206
+ ruby
207
+
208
+ DEPENDENCIES
209
+ activeresource (= 4.0.0)
210
+ appraisal (~> 2.1)
211
+ bcrypt (~> 3.1.7)
212
+ bundler (~> 1.0)
213
+ coffee-rails (~> 4.1.0)
214
+ jbuilder (~> 2.0)
215
+ jquery-rails
216
+ json (~> 1.4)
217
+ m
218
+ minitest (~> 5.0)
219
+ minitest-reporters
220
+ mry
221
+ protected_attributes (~> 1.0.6)
222
+ pry (~> 0.12.0)
223
+ pry-byebug (~> 3.6.0)
224
+ rails (~> 4.2.10)
225
+ rubocop (= 0.71.0)
226
+ rubocop-rails
227
+ rubyzip (~> 1.3.0)
228
+ sass-rails (~> 5.0)
229
+ sdoc (~> 0.4.0)
230
+ shoulda!
231
+ snowglobe (>= 0.3.0)
232
+ spring
233
+ spring-commands-rspec
234
+ sqlite3 (~> 1.3.6)
235
+ turbolinks
236
+ uglifier (>= 1.3.0)
237
+ warnings_logger
238
+
239
+ BUNDLED WITH
240
+ 1.17.3
@@ -0,0 +1,32 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 2.1"
6
+ gem "bundler", "~> 1.0"
7
+ gem "m"
8
+ gem "minitest", "~> 5.0"
9
+ gem "minitest-reporters"
10
+ gem "mry"
11
+ gem "pry", "~> 0.12.0"
12
+ gem "pry-byebug", "~> 3.6.0"
13
+ gem "rubocop", "0.71.0", require: false
14
+ gem "rubocop-rails", require: false
15
+ gem "snowglobe", ">= 0.3.0"
16
+ gem "warnings_logger"
17
+ gem "sqlite3", "~> 1.3.6"
18
+ gem "rubyzip", "~> 1.3.0"
19
+ gem "spring"
20
+ gem "spring-commands-rspec"
21
+ gem "rails", "~> 5.0.7"
22
+ gem "rails-controller-testing", ">= 1.0.1"
23
+ gem "puma", "~> 3.0"
24
+ gem "sass-rails", "~> 5.0"
25
+ gem "jquery-rails"
26
+ gem "turbolinks", "~> 5"
27
+ gem "jbuilder", "~> 2.5"
28
+ gem "bcrypt", "~> 3.1.7"
29
+ gem "listen", "~> 3.0.5"
30
+ gem "spring-watcher-listen", "~> 2.0.0"
31
+
32
+ gemspec path: "../"
@@ -0,0 +1,232 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ shoulda (4.0.0)
5
+ shoulda-context (~> 2.0)
6
+ shoulda-matchers (~> 4.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.0.7.2)
12
+ actionpack (= 5.0.7.2)
13
+ nio4r (>= 1.2, < 3.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.0.7.2)
16
+ actionpack (= 5.0.7.2)
17
+ actionview (= 5.0.7.2)
18
+ activejob (= 5.0.7.2)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.0.7.2)
22
+ actionview (= 5.0.7.2)
23
+ activesupport (= 5.0.7.2)
24
+ rack (~> 2.0)
25
+ rack-test (~> 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.0.7.2)
29
+ activesupport (= 5.0.7.2)
30
+ builder (~> 3.1)
31
+ erubis (~> 2.7.0)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.0.7.2)
35
+ activesupport (= 5.0.7.2)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.0.7.2)
38
+ activesupport (= 5.0.7.2)
39
+ activerecord (5.0.7.2)
40
+ activemodel (= 5.0.7.2)
41
+ activesupport (= 5.0.7.2)
42
+ arel (~> 7.0)
43
+ activesupport (5.0.7.2)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (>= 0.7, < 2)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ ansi (1.5.0)
49
+ appraisal (2.2.0)
50
+ bundler
51
+ rake
52
+ thor (>= 0.14.0)
53
+ arel (7.1.4)
54
+ ast (2.4.0)
55
+ bcrypt (3.1.13)
56
+ builder (3.2.4)
57
+ byebug (10.0.2)
58
+ coderay (1.1.2)
59
+ concurrent-ruby (1.1.6)
60
+ crass (1.0.6)
61
+ erubis (2.7.0)
62
+ ffi (1.12.2)
63
+ globalid (0.4.2)
64
+ activesupport (>= 4.2.0)
65
+ i18n (1.8.2)
66
+ concurrent-ruby (~> 1.0)
67
+ jaro_winkler (1.5.4)
68
+ jbuilder (2.10.0)
69
+ activesupport (>= 5.0.0)
70
+ jquery-rails (4.3.5)
71
+ rails-dom-testing (>= 1, < 3)
72
+ railties (>= 4.2.0)
73
+ thor (>= 0.14, < 2.0)
74
+ listen (3.0.8)
75
+ rb-fsevent (~> 0.9, >= 0.9.4)
76
+ rb-inotify (~> 0.9, >= 0.9.7)
77
+ loofah (2.4.0)
78
+ crass (~> 1.0.2)
79
+ nokogiri (>= 1.5.9)
80
+ m (1.5.1)
81
+ method_source (>= 0.6.7)
82
+ rake (>= 0.9.2.2)
83
+ mail (2.7.1)
84
+ mini_mime (>= 0.1.1)
85
+ method_source (0.9.2)
86
+ mini_mime (1.0.2)
87
+ mini_portile2 (2.4.0)
88
+ minitest (5.14.0)
89
+ minitest-reporters (1.4.2)
90
+ ansi
91
+ builder
92
+ minitest (>= 5.0)
93
+ ruby-progressbar
94
+ mry (0.78.0.0)
95
+ rubocop (>= 0.41.0)
96
+ nio4r (2.5.2)
97
+ nokogiri (1.10.9)
98
+ mini_portile2 (~> 2.4.0)
99
+ parallel (1.19.1)
100
+ parser (2.7.1.0)
101
+ ast (~> 2.4.0)
102
+ pry (0.12.2)
103
+ coderay (~> 1.1.0)
104
+ method_source (~> 0.9.0)
105
+ pry-byebug (3.6.0)
106
+ byebug (~> 10.0)
107
+ pry (~> 0.10)
108
+ puma (3.12.4)
109
+ rack (2.2.2)
110
+ rack-test (0.6.3)
111
+ rack (>= 1.0)
112
+ rails (5.0.7.2)
113
+ actioncable (= 5.0.7.2)
114
+ actionmailer (= 5.0.7.2)
115
+ actionpack (= 5.0.7.2)
116
+ actionview (= 5.0.7.2)
117
+ activejob (= 5.0.7.2)
118
+ activemodel (= 5.0.7.2)
119
+ activerecord (= 5.0.7.2)
120
+ activesupport (= 5.0.7.2)
121
+ bundler (>= 1.3.0)
122
+ railties (= 5.0.7.2)
123
+ sprockets-rails (>= 2.0.0)
124
+ rails-controller-testing (1.0.4)
125
+ actionpack (>= 5.0.1.x)
126
+ actionview (>= 5.0.1.x)
127
+ activesupport (>= 5.0.1.x)
128
+ rails-dom-testing (2.0.3)
129
+ activesupport (>= 4.2.0)
130
+ nokogiri (>= 1.6)
131
+ rails-html-sanitizer (1.3.0)
132
+ loofah (~> 2.3)
133
+ railties (5.0.7.2)
134
+ actionpack (= 5.0.7.2)
135
+ activesupport (= 5.0.7.2)
136
+ method_source
137
+ rake (>= 0.8.7)
138
+ thor (>= 0.18.1, < 2.0)
139
+ rainbow (3.0.0)
140
+ rake (13.0.1)
141
+ rb-fsevent (0.10.3)
142
+ rb-inotify (0.10.1)
143
+ ffi (~> 1.0)
144
+ rubocop (0.71.0)
145
+ jaro_winkler (~> 1.5.1)
146
+ parallel (~> 1.10)
147
+ parser (>= 2.6)
148
+ rainbow (>= 2.2.2, < 4.0)
149
+ ruby-progressbar (~> 1.7)
150
+ unicode-display_width (>= 1.4.0, < 1.7)
151
+ rubocop-rails (2.0.1)
152
+ rack (>= 1.1)
153
+ rubocop (>= 0.70.0)
154
+ ruby-progressbar (1.10.1)
155
+ rubyzip (1.3.0)
156
+ sass (3.7.4)
157
+ sass-listen (~> 4.0.0)
158
+ sass-listen (4.0.0)
159
+ rb-fsevent (~> 0.9, >= 0.9.4)
160
+ rb-inotify (~> 0.9, >= 0.9.7)
161
+ sass-rails (5.0.7)
162
+ railties (>= 4.0.0, < 6)
163
+ sass (~> 3.1)
164
+ sprockets (>= 2.8, < 4.0)
165
+ sprockets-rails (>= 2.0, < 4.0)
166
+ tilt (>= 1.1, < 3)
167
+ shoulda-context (2.0.0)
168
+ shoulda-matchers (4.3.0)
169
+ activesupport (>= 4.2.0)
170
+ snowglobe (0.3.0)
171
+ spring (2.1.0)
172
+ spring-commands-rspec (1.0.4)
173
+ spring (>= 0.9.1)
174
+ spring-watcher-listen (2.0.1)
175
+ listen (>= 2.7, < 4.0)
176
+ spring (>= 1.2, < 3.0)
177
+ sprockets (3.7.2)
178
+ concurrent-ruby (~> 1.0)
179
+ rack (> 1, < 3)
180
+ sprockets-rails (3.2.1)
181
+ actionpack (>= 4.0)
182
+ activesupport (>= 4.0)
183
+ sprockets (>= 3.0.0)
184
+ sqlite3 (1.3.13)
185
+ thor (1.0.1)
186
+ thread_safe (0.3.6)
187
+ tilt (2.0.10)
188
+ turbolinks (5.2.1)
189
+ turbolinks-source (~> 5.2)
190
+ turbolinks-source (5.2.0)
191
+ tzinfo (1.2.7)
192
+ thread_safe (~> 0.1)
193
+ unicode-display_width (1.6.1)
194
+ warnings_logger (0.1.0)
195
+ websocket-driver (0.6.5)
196
+ websocket-extensions (>= 0.1.0)
197
+ websocket-extensions (0.1.4)
198
+
199
+ PLATFORMS
200
+ ruby
201
+
202
+ DEPENDENCIES
203
+ appraisal (~> 2.1)
204
+ bcrypt (~> 3.1.7)
205
+ bundler (~> 1.0)
206
+ jbuilder (~> 2.5)
207
+ jquery-rails
208
+ listen (~> 3.0.5)
209
+ m
210
+ minitest (~> 5.0)
211
+ minitest-reporters
212
+ mry
213
+ pry (~> 0.12.0)
214
+ pry-byebug (~> 3.6.0)
215
+ puma (~> 3.0)
216
+ rails (~> 5.0.7)
217
+ rails-controller-testing (>= 1.0.1)
218
+ rubocop (= 0.71.0)
219
+ rubocop-rails
220
+ rubyzip (~> 1.3.0)
221
+ sass-rails (~> 5.0)
222
+ shoulda!
223
+ snowglobe (>= 0.3.0)
224
+ spring
225
+ spring-commands-rspec
226
+ spring-watcher-listen (~> 2.0.0)
227
+ sqlite3 (~> 1.3.6)
228
+ turbolinks (~> 5)
229
+ warnings_logger
230
+
231
+ BUNDLED WITH
232
+ 1.17.3