shoulda 3.6.0 → 4.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/.rubocop.yml +181 -2
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +24 -9
  6. data/Appraisals +108 -10
  7. data/Gemfile +9 -5
  8. data/README.md +24 -17
  9. data/Rakefile +18 -13
  10. data/gemfiles/rails_4_2.gemfile +31 -0
  11. data/gemfiles/rails_4_2.gemfile.lock +240 -0
  12. data/gemfiles/rails_5_0.gemfile +29 -0
  13. data/gemfiles/rails_5_0.gemfile.lock +232 -0
  14. data/gemfiles/rails_5_1.gemfile +30 -0
  15. data/gemfiles/rails_5_1.gemfile.lock +249 -0
  16. data/gemfiles/rails_5_2.gemfile +32 -0
  17. data/gemfiles/rails_5_2.gemfile.lock +268 -0
  18. data/gemfiles/rails_6_0.gemfile +34 -0
  19. data/gemfiles/rails_6_0.gemfile.lock +285 -0
  20. data/lib/shoulda/version.rb +1 -1
  21. data/script/install_gems_in_all_appraisals +16 -0
  22. data/script/run_all_tests +16 -0
  23. data/script/supported_ruby_versions +7 -0
  24. data/script/update_gem_in_all_appraisals +17 -0
  25. data/script/update_gems_in_all_appraisals +16 -0
  26. data/shoulda.gemspec +3 -3
  27. data/test/acceptance/integrates_with_rails_test.rb +580 -0
  28. data/test/acceptance_test_helper.rb +32 -6
  29. data/test/support/acceptance/add_shoulda_to_project.rb +13 -18
  30. data/test/support/acceptance/matchers/have_output.rb +2 -0
  31. data/test/support/acceptance/matchers/indicate_that_tests_were_run.rb +109 -0
  32. data/test/support/acceptance/rails_application_with_shoulda.rb +47 -0
  33. data/test/support/{tests/current_bundle.rb → current_bundle.rb} +4 -4
  34. data/test/support/snowglobe.rb +5 -0
  35. data/test/test_helper.rb +9 -4
  36. metadata +37 -65
  37. data/.hound/ruby.yml +0 -1042
  38. data/gemfiles/4.2.gemfile +0 -17
  39. data/gemfiles/4.2.gemfile.lock +0 -174
  40. data/gemfiles/5.0.gemfile +0 -17
  41. data/gemfiles/5.0.gemfile.lock +0 -179
  42. data/test/acceptance/rails_integration_test.rb +0 -76
  43. data/test/report_warnings.rb +0 -7
  44. data/test/support/acceptance/helpers.rb +0 -19
  45. data/test/support/acceptance/helpers/active_model_helpers.rb +0 -11
  46. data/test/support/acceptance/helpers/base_helpers.rb +0 -14
  47. data/test/support/acceptance/helpers/command_helpers.rb +0 -54
  48. data/test/support/acceptance/helpers/file_helpers.rb +0 -19
  49. data/test/support/acceptance/helpers/gem_helpers.rb +0 -31
  50. data/test/support/acceptance/helpers/step_helpers.rb +0 -69
  51. data/test/support/acceptance/matchers/indicate_number_of_tests_was_run_matcher.rb +0 -54
  52. data/test/support/acceptance/matchers/indicate_that_tests_were_run_matcher.rb +0 -75
  53. data/test/support/tests/bundle.rb +0 -94
  54. data/test/support/tests/command_runner.rb +0 -230
  55. data/test/support/tests/filesystem.rb +0 -100
  56. data/test/support/tests/version.rb +0 -45
  57. data/test/warnings_spy.rb +0 -62
  58. data/test/warnings_spy/filesystem.rb +0 -45
  59. data/test/warnings_spy/partitioner.rb +0 -36
  60. data/test/warnings_spy/reader.rb +0 -53
  61. data/test/warnings_spy/reporter.rb +0 -88
data/Rakefile CHANGED
@@ -1,26 +1,31 @@
1
- require 'appraisal'
2
- require 'bundler/gem_tasks'
3
1
  require 'bundler/setup'
2
+ require 'bundler/gem_tasks'
4
3
  require 'rake/testtask'
5
- require_relative 'test/support/tests/current_bundle'
4
+ require 'pry-byebug'
5
+
6
+ require_relative 'test/support/current_bundle'
6
7
 
7
- Rake::TestTask.new('test:acceptance') do |t|
8
+ Rake::TestTask.new do |t|
8
9
  t.libs << 'test'
9
- # t.ruby_opts += ['-w', '-r', './test/report_warnings']
10
10
  t.ruby_opts += ['-w']
11
- t.pattern = 'test/acceptance/**/*_test.rb'
11
+ t.pattern = 'test/**/*_test.rb'
12
12
  t.verbose = false
13
13
  end
14
14
 
15
15
  task :default do
16
16
  if Tests::CurrentBundle.instance.appraisal_in_use?
17
- sh 'rake test:acceptance --trace'
17
+ Rake::Task['test'].invoke
18
+ elsif ENV['CI']
19
+ exec 'appraisal install && appraisal rake --trace'
18
20
  else
19
- if ENV['CI']
20
- exec "appraisal install && appraisal rake --trace"
21
- else
22
- appraisal = Tests::CurrentBundle.instance.latest_appraisal
23
- exec "appraisal install && appraisal #{appraisal} rake --trace"
24
- end
21
+ appraisal = Tests::CurrentBundle.instance.latest_appraisal
22
+ exec "appraisal install && appraisal #{appraisal} rake --trace"
23
+ end
24
+ end
25
+
26
+ namespace :appraisal do
27
+ task :list do
28
+ appraisals = Tests::CurrentBundle.instance.available_appraisals
29
+ puts "Valid appraisals: #{appraisals.join(', ')}"
25
30
  end
26
31
  end
@@ -0,0 +1,31 @@
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-byebug"
12
+ gem "rubocop"
13
+ gem "snowglobe"
14
+ gem "warnings_logger"
15
+ gem "sqlite3", platform: :ruby
16
+ gem "spring"
17
+ gem "spring-commands-rspec"
18
+ gem "rails", "~> 4.2.10"
19
+ gem "sass-rails", "~> 5.0"
20
+ gem "uglifier", ">= 1.3.0"
21
+ gem "coffee-rails", "~> 4.1.0"
22
+ gem "jquery-rails"
23
+ gem "turbolinks"
24
+ gem "jbuilder", "~> 2.0"
25
+ gem "sdoc", "~> 0.4.0", group: :doc
26
+ gem "bcrypt", "~> 3.1.7"
27
+ gem "activeresource", "4.0.0"
28
+ gem "json", "~> 1.4"
29
+ gem "protected_attributes", "~> 1.0.6"
30
+
31
+ gemspec path: "../"
@@ -0,0 +1,240 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ shoulda (4.0.0.rc1)
5
+ shoulda-context (= 2.0.0.rc2)
6
+ shoulda-matchers (~> 4.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.2.11)
12
+ actionpack (= 4.2.11)
13
+ actionview (= 4.2.11)
14
+ activejob (= 4.2.11)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ actionpack (4.2.11)
18
+ actionview (= 4.2.11)
19
+ activesupport (= 4.2.11)
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)
25
+ activesupport (= 4.2.11)
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)
31
+ activesupport (= 4.2.11)
32
+ globalid (>= 0.3.0)
33
+ activemodel (4.2.11)
34
+ activesupport (= 4.2.11)
35
+ builder (~> 3.1)
36
+ activerecord (4.2.11)
37
+ activemodel (= 4.2.11)
38
+ activesupport (= 4.2.11)
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)
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.12)
57
+ builder (3.2.3)
58
+ byebug (11.0.0)
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.4)
68
+ crass (1.0.4)
69
+ erubis (2.7.0)
70
+ execjs (2.7.0)
71
+ ffi (1.10.0)
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.2)
77
+ jbuilder (2.8.0)
78
+ activesupport (>= 4.2.0)
79
+ multi_json (>= 1.2)
80
+ jquery-rails (4.3.3)
81
+ rails-dom-testing (>= 1, < 3)
82
+ railties (>= 4.2.0)
83
+ thor (>= 0.14, < 2.0)
84
+ json (1.8.6)
85
+ loofah (2.2.3)
86
+ crass (~> 1.0.2)
87
+ nokogiri (>= 1.5.9)
88
+ m (1.5.1)
89
+ method_source (>= 0.6.7)
90
+ rake (>= 0.9.2.2)
91
+ mail (2.7.1)
92
+ mini_mime (>= 0.1.1)
93
+ method_source (0.9.2)
94
+ mini_mime (1.0.1)
95
+ mini_portile2 (2.4.0)
96
+ minitest (5.11.3)
97
+ minitest-reporters (1.3.6)
98
+ ansi
99
+ builder
100
+ minitest (>= 5.0)
101
+ ruby-progressbar
102
+ mry (0.77.0.2)
103
+ rubocop (>= 0.41.0)
104
+ multi_json (1.13.1)
105
+ nokogiri (1.10.1)
106
+ mini_portile2 (~> 2.4.0)
107
+ parallel (1.14.0)
108
+ parser (2.6.0.0)
109
+ ast (~> 2.4.0)
110
+ powerpack (0.1.2)
111
+ protected_attributes (1.0.9)
112
+ activemodel (>= 4.0.1, < 5.0)
113
+ pry (0.12.2)
114
+ coderay (~> 1.1.0)
115
+ method_source (~> 0.9.0)
116
+ pry-byebug (3.7.0)
117
+ byebug (~> 11.0)
118
+ pry (~> 0.10)
119
+ psych (3.1.0)
120
+ rack (1.6.11)
121
+ rack-test (0.6.3)
122
+ rack (>= 1.0)
123
+ rails (4.2.11)
124
+ actionmailer (= 4.2.11)
125
+ actionpack (= 4.2.11)
126
+ actionview (= 4.2.11)
127
+ activejob (= 4.2.11)
128
+ activemodel (= 4.2.11)
129
+ activerecord (= 4.2.11)
130
+ activesupport (= 4.2.11)
131
+ bundler (>= 1.3.0, < 2.0)
132
+ railties (= 4.2.11)
133
+ sprockets-rails
134
+ rails-deprecated_sanitizer (1.0.3)
135
+ activesupport (>= 4.2.0.alpha)
136
+ rails-dom-testing (1.0.9)
137
+ activesupport (>= 4.2.0, < 5.0)
138
+ nokogiri (~> 1.6)
139
+ rails-deprecated_sanitizer (>= 1.0.1)
140
+ rails-html-sanitizer (1.0.4)
141
+ loofah (~> 2.2, >= 2.2.2)
142
+ rails-observers (0.1.5)
143
+ activemodel (>= 4.0)
144
+ railties (4.2.11)
145
+ actionpack (= 4.2.11)
146
+ activesupport (= 4.2.11)
147
+ rake (>= 0.8.7)
148
+ thor (>= 0.18.1, < 2.0)
149
+ rainbow (3.0.0)
150
+ rake (12.3.2)
151
+ rb-fsevent (0.10.3)
152
+ rb-inotify (0.10.0)
153
+ ffi (~> 1.0)
154
+ rdoc (4.3.0)
155
+ rubocop (0.65.0)
156
+ jaro_winkler (~> 1.5.1)
157
+ parallel (~> 1.10)
158
+ parser (>= 2.5, != 2.5.1.1)
159
+ powerpack (~> 0.1)
160
+ psych (>= 3.1.0)
161
+ rainbow (>= 2.2.2, < 4.0)
162
+ ruby-progressbar (~> 1.7)
163
+ unicode-display_width (~> 1.4.0)
164
+ ruby-progressbar (1.10.0)
165
+ sass (3.7.3)
166
+ sass-listen (~> 4.0.0)
167
+ sass-listen (4.0.0)
168
+ rb-fsevent (~> 0.9, >= 0.9.4)
169
+ rb-inotify (~> 0.9, >= 0.9.7)
170
+ sass-rails (5.0.7)
171
+ railties (>= 4.0.0, < 6)
172
+ sass (~> 3.1)
173
+ sprockets (>= 2.8, < 4.0)
174
+ sprockets-rails (>= 2.0, < 4.0)
175
+ tilt (>= 1.1, < 3)
176
+ sdoc (0.4.2)
177
+ json (~> 1.7, >= 1.7.7)
178
+ rdoc (~> 4.0)
179
+ shoulda-context (2.0.0.rc2)
180
+ shoulda-matchers (4.1.2)
181
+ activesupport (>= 4.2.0)
182
+ snowglobe (0.1.0)
183
+ spring (2.0.2)
184
+ activesupport (>= 4.2)
185
+ spring-commands-rspec (1.0.4)
186
+ spring (>= 0.9.1)
187
+ sprockets (3.7.2)
188
+ concurrent-ruby (~> 1.0)
189
+ rack (> 1, < 3)
190
+ sprockets-rails (3.2.1)
191
+ actionpack (>= 4.0)
192
+ activesupport (>= 4.0)
193
+ sprockets (>= 3.0.0)
194
+ sqlite3 (1.3.13)
195
+ thor (0.20.3)
196
+ thread_safe (0.3.6)
197
+ tilt (2.0.9)
198
+ turbolinks (5.2.0)
199
+ turbolinks-source (~> 5.2)
200
+ turbolinks-source (5.2.0)
201
+ tzinfo (1.2.5)
202
+ thread_safe (~> 0.1)
203
+ uglifier (4.1.20)
204
+ execjs (>= 0.3.0, < 3)
205
+ unicode-display_width (1.4.1)
206
+ warnings_logger (0.1.0)
207
+
208
+ PLATFORMS
209
+ ruby
210
+
211
+ DEPENDENCIES
212
+ activeresource (= 4.0.0)
213
+ appraisal (~> 2.1)
214
+ bcrypt (~> 3.1.7)
215
+ bundler (~> 1.0)
216
+ coffee-rails (~> 4.1.0)
217
+ jbuilder (~> 2.0)
218
+ jquery-rails
219
+ json (~> 1.4)
220
+ m
221
+ minitest (~> 5.0)
222
+ minitest-reporters
223
+ mry
224
+ protected_attributes (~> 1.0.6)
225
+ pry-byebug
226
+ rails (~> 4.2.10)
227
+ rubocop
228
+ sass-rails (~> 5.0)
229
+ sdoc (~> 0.4.0)
230
+ shoulda!
231
+ snowglobe
232
+ spring
233
+ spring-commands-rspec
234
+ sqlite3
235
+ turbolinks
236
+ uglifier (>= 1.3.0)
237
+ warnings_logger
238
+
239
+ BUNDLED WITH
240
+ 1.17.3
@@ -0,0 +1,29 @@
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-byebug"
12
+ gem "rubocop"
13
+ gem "snowglobe"
14
+ gem "warnings_logger"
15
+ gem "sqlite3", platform: :ruby
16
+ gem "spring"
17
+ gem "spring-commands-rspec"
18
+ gem "rails", "~> 5.0.7"
19
+ gem "rails-controller-testing", ">= 1.0.1"
20
+ gem "puma", "~> 3.0"
21
+ gem "sass-rails", "~> 5.0"
22
+ gem "jquery-rails"
23
+ gem "turbolinks", "~> 5"
24
+ gem "jbuilder", "~> 2.5"
25
+ gem "bcrypt", "~> 3.1.7"
26
+ gem "listen", "~> 3.0.5"
27
+ gem "spring-watcher-listen", "~> 2.0.0"
28
+
29
+ gemspec path: "../"
@@ -0,0 +1,232 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ shoulda (4.0.0.rc1)
5
+ shoulda-context (= 2.0.0.rc2)
6
+ shoulda-matchers (~> 4.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.0.7.1)
12
+ actionpack (= 5.0.7.1)
13
+ nio4r (>= 1.2, < 3.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.0.7.1)
16
+ actionpack (= 5.0.7.1)
17
+ actionview (= 5.0.7.1)
18
+ activejob (= 5.0.7.1)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.0.7.1)
22
+ actionview (= 5.0.7.1)
23
+ activesupport (= 5.0.7.1)
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.1)
29
+ activesupport (= 5.0.7.1)
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.1)
35
+ activesupport (= 5.0.7.1)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.0.7.1)
38
+ activesupport (= 5.0.7.1)
39
+ activerecord (5.0.7.1)
40
+ activemodel (= 5.0.7.1)
41
+ activesupport (= 5.0.7.1)
42
+ arel (~> 7.0)
43
+ activesupport (5.0.7.1)
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.12)
56
+ builder (3.2.3)
57
+ byebug (11.0.0)
58
+ coderay (1.1.2)
59
+ concurrent-ruby (1.1.4)
60
+ crass (1.0.4)
61
+ erubis (2.7.0)
62
+ ffi (1.10.0)
63
+ globalid (0.4.2)
64
+ activesupport (>= 4.2.0)
65
+ i18n (1.5.3)
66
+ concurrent-ruby (~> 1.0)
67
+ jaro_winkler (1.5.2)
68
+ jbuilder (2.8.0)
69
+ activesupport (>= 4.2.0)
70
+ multi_json (>= 1.2)
71
+ jquery-rails (4.3.3)
72
+ rails-dom-testing (>= 1, < 3)
73
+ railties (>= 4.2.0)
74
+ thor (>= 0.14, < 2.0)
75
+ listen (3.0.8)
76
+ rb-fsevent (~> 0.9, >= 0.9.4)
77
+ rb-inotify (~> 0.9, >= 0.9.7)
78
+ loofah (2.2.3)
79
+ crass (~> 1.0.2)
80
+ nokogiri (>= 1.5.9)
81
+ m (1.5.1)
82
+ method_source (>= 0.6.7)
83
+ rake (>= 0.9.2.2)
84
+ mail (2.7.1)
85
+ mini_mime (>= 0.1.1)
86
+ method_source (0.9.2)
87
+ mini_mime (1.0.1)
88
+ mini_portile2 (2.4.0)
89
+ minitest (5.11.3)
90
+ minitest-reporters (1.3.6)
91
+ ansi
92
+ builder
93
+ minitest (>= 5.0)
94
+ ruby-progressbar
95
+ mry (0.77.0.2)
96
+ rubocop (>= 0.41.0)
97
+ multi_json (1.13.1)
98
+ nio4r (2.3.1)
99
+ nokogiri (1.10.1)
100
+ mini_portile2 (~> 2.4.0)
101
+ parallel (1.14.0)
102
+ parser (2.6.0.0)
103
+ ast (~> 2.4.0)
104
+ powerpack (0.1.2)
105
+ pry (0.12.2)
106
+ coderay (~> 1.1.0)
107
+ method_source (~> 0.9.0)
108
+ pry-byebug (3.7.0)
109
+ byebug (~> 11.0)
110
+ pry (~> 0.10)
111
+ psych (3.1.0)
112
+ puma (3.12.0)
113
+ rack (2.0.6)
114
+ rack-test (0.6.3)
115
+ rack (>= 1.0)
116
+ rails (5.0.7.1)
117
+ actioncable (= 5.0.7.1)
118
+ actionmailer (= 5.0.7.1)
119
+ actionpack (= 5.0.7.1)
120
+ actionview (= 5.0.7.1)
121
+ activejob (= 5.0.7.1)
122
+ activemodel (= 5.0.7.1)
123
+ activerecord (= 5.0.7.1)
124
+ activesupport (= 5.0.7.1)
125
+ bundler (>= 1.3.0)
126
+ railties (= 5.0.7.1)
127
+ sprockets-rails (>= 2.0.0)
128
+ rails-controller-testing (1.0.4)
129
+ actionpack (>= 5.0.1.x)
130
+ actionview (>= 5.0.1.x)
131
+ activesupport (>= 5.0.1.x)
132
+ rails-dom-testing (2.0.3)
133
+ activesupport (>= 4.2.0)
134
+ nokogiri (>= 1.6)
135
+ rails-html-sanitizer (1.0.4)
136
+ loofah (~> 2.2, >= 2.2.2)
137
+ railties (5.0.7.1)
138
+ actionpack (= 5.0.7.1)
139
+ activesupport (= 5.0.7.1)
140
+ method_source
141
+ rake (>= 0.8.7)
142
+ thor (>= 0.18.1, < 2.0)
143
+ rainbow (3.0.0)
144
+ rake (12.3.2)
145
+ rb-fsevent (0.10.3)
146
+ rb-inotify (0.10.0)
147
+ ffi (~> 1.0)
148
+ rubocop (0.65.0)
149
+ jaro_winkler (~> 1.5.1)
150
+ parallel (~> 1.10)
151
+ parser (>= 2.5, != 2.5.1.1)
152
+ powerpack (~> 0.1)
153
+ psych (>= 3.1.0)
154
+ rainbow (>= 2.2.2, < 4.0)
155
+ ruby-progressbar (~> 1.7)
156
+ unicode-display_width (~> 1.4.0)
157
+ ruby-progressbar (1.10.0)
158
+ sass (3.7.3)
159
+ sass-listen (~> 4.0.0)
160
+ sass-listen (4.0.0)
161
+ rb-fsevent (~> 0.9, >= 0.9.4)
162
+ rb-inotify (~> 0.9, >= 0.9.7)
163
+ sass-rails (5.0.7)
164
+ railties (>= 4.0.0, < 6)
165
+ sass (~> 3.1)
166
+ sprockets (>= 2.8, < 4.0)
167
+ sprockets-rails (>= 2.0, < 4.0)
168
+ tilt (>= 1.1, < 3)
169
+ shoulda-context (2.0.0.rc2)
170
+ shoulda-matchers (4.1.2)
171
+ activesupport (>= 4.2.0)
172
+ snowglobe (0.1.0)
173
+ spring (2.0.2)
174
+ activesupport (>= 4.2)
175
+ spring-commands-rspec (1.0.4)
176
+ spring (>= 0.9.1)
177
+ spring-watcher-listen (2.0.1)
178
+ listen (>= 2.7, < 4.0)
179
+ spring (>= 1.2, < 3.0)
180
+ sprockets (3.7.2)
181
+ concurrent-ruby (~> 1.0)
182
+ rack (> 1, < 3)
183
+ sprockets-rails (3.2.1)
184
+ actionpack (>= 4.0)
185
+ activesupport (>= 4.0)
186
+ sprockets (>= 3.0.0)
187
+ sqlite3 (1.3.13)
188
+ thor (0.20.3)
189
+ thread_safe (0.3.6)
190
+ tilt (2.0.9)
191
+ turbolinks (5.2.0)
192
+ turbolinks-source (~> 5.2)
193
+ turbolinks-source (5.2.0)
194
+ tzinfo (1.2.5)
195
+ thread_safe (~> 0.1)
196
+ unicode-display_width (1.4.1)
197
+ warnings_logger (0.1.0)
198
+ websocket-driver (0.6.5)
199
+ websocket-extensions (>= 0.1.0)
200
+ websocket-extensions (0.1.3)
201
+
202
+ PLATFORMS
203
+ ruby
204
+
205
+ DEPENDENCIES
206
+ appraisal (~> 2.1)
207
+ bcrypt (~> 3.1.7)
208
+ bundler (~> 1.0)
209
+ jbuilder (~> 2.5)
210
+ jquery-rails
211
+ listen (~> 3.0.5)
212
+ m
213
+ minitest (~> 5.0)
214
+ minitest-reporters
215
+ mry
216
+ pry-byebug
217
+ puma (~> 3.0)
218
+ rails (~> 5.0.7)
219
+ rails-controller-testing (>= 1.0.1)
220
+ rubocop
221
+ sass-rails (~> 5.0)
222
+ shoulda!
223
+ snowglobe
224
+ spring
225
+ spring-commands-rspec
226
+ spring-watcher-listen (~> 2.0.0)
227
+ sqlite3
228
+ turbolinks (~> 5)
229
+ warnings_logger
230
+
231
+ BUNDLED WITH
232
+ 1.17.3