shoulda-context 1.2.2 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +0 -1
  3. data/.hound.yml +3 -0
  4. data/.rubocop.yml +190 -0
  5. data/.ruby-version +1 -1
  6. data/.travis.yml +36 -2
  7. data/Appraisals +100 -29
  8. data/CHANGELOG.md +29 -0
  9. data/Gemfile +15 -1
  10. data/Gemfile.lock +70 -0
  11. data/MIT-LICENSE +1 -1
  12. data/README.md +140 -29
  13. data/Rakefile +20 -15
  14. data/bin/install_gems_in_all_appraisals +16 -0
  15. data/bin/run_all_tests +16 -0
  16. data/bin/setup +190 -0
  17. data/bin/supported_ruby_versions +7 -0
  18. data/bin/update_gem_in_all_appraisals +17 -0
  19. data/bin/update_gems_in_all_appraisals +16 -0
  20. data/{bin → exe}/convert_to_should_syntax +0 -0
  21. data/gemfiles/rails_4_2.gemfile +35 -0
  22. data/gemfiles/rails_4_2.gemfile.lock +234 -0
  23. data/gemfiles/rails_5_0.gemfile +33 -0
  24. data/gemfiles/rails_5_0.gemfile.lock +226 -0
  25. data/gemfiles/rails_5_1.gemfile +34 -0
  26. data/gemfiles/rails_5_1.gemfile.lock +242 -0
  27. data/gemfiles/rails_5_2.gemfile +36 -0
  28. data/gemfiles/rails_5_2.gemfile.lock +261 -0
  29. data/gemfiles/rails_6_0.gemfile +38 -0
  30. data/gemfiles/rails_6_0.gemfile.lock +286 -0
  31. data/lib/shoulda/context.rb +13 -16
  32. data/lib/shoulda/context/assertions.rb +16 -13
  33. data/lib/shoulda/context/configuration.rb +19 -0
  34. data/lib/shoulda/context/context.rb +33 -307
  35. data/lib/shoulda/context/dsl.rb +279 -0
  36. data/lib/shoulda/context/rails_test_unit_reporter_patch.rb +21 -0
  37. data/lib/shoulda/context/railtie.rb +14 -0
  38. data/lib/shoulda/context/test_framework_detection.rb +4 -5
  39. data/lib/shoulda/context/version.rb +1 -1
  40. data/lib/shoulda/context/world.rb +22 -0
  41. data/shoulda-context.gemspec +11 -18
  42. data/test/fake_rails_root/test/shoulda_macros/custom_macro.rb +1 -1
  43. data/test/fake_rails_root/vendor/gems/gem_with_macro-0.0.1/shoulda_macros/gem_macro.rb +1 -2
  44. data/test/fake_rails_root/vendor/plugins/plugin_with_macro/shoulda_macros/plugin_macro.rb +1 -2
  45. data/test/shoulda/autoload_macro_test.rb +1 -1
  46. data/test/shoulda/context_test.rb +92 -53
  47. data/test/shoulda/convert_to_should_syntax_test.rb +5 -7
  48. data/test/shoulda/helpers_test.rb +24 -59
  49. data/test/shoulda/railtie_test.rb +43 -0
  50. data/test/shoulda/rerun_snippet_test.rb +45 -0
  51. data/test/shoulda/should_test.rb +163 -24
  52. data/test/shoulda/test_framework_detection_test.rb +64 -71
  53. data/test/support/current_bundle.rb +61 -0
  54. data/test/support/rails_application_with_shoulda_context.rb +46 -0
  55. data/test/support/snowglobe.rb +5 -0
  56. data/test/test_helper.rb +43 -11
  57. metadata +46 -142
  58. data/gemfiles/minitest_4_x.gemfile +0 -7
  59. data/gemfiles/minitest_4_x.gemfile.lock +0 -96
  60. data/gemfiles/minitest_5_x.gemfile +0 -7
  61. data/gemfiles/minitest_5_x.gemfile.lock +0 -102
  62. data/gemfiles/rails_3_0.gemfile +0 -8
  63. data/gemfiles/rails_3_0.gemfile.lock +0 -93
  64. data/gemfiles/rails_3_1.gemfile +0 -10
  65. data/gemfiles/rails_3_1.gemfile.lock +0 -114
  66. data/gemfiles/rails_3_2.gemfile +0 -10
  67. data/gemfiles/rails_3_2.gemfile.lock +0 -112
  68. data/gemfiles/rails_4_0.gemfile +0 -10
  69. data/gemfiles/rails_4_0.gemfile.lock +0 -107
  70. data/gemfiles/rails_4_1.gemfile +0 -10
  71. data/gemfiles/rails_4_1.gemfile.lock +0 -119
  72. data/gemfiles/test_unit.gemfile +0 -7
  73. data/gemfiles/test_unit.gemfile.lock +0 -95
  74. data/init.rb +0 -1
  75. data/rails/init.rb +0 -4
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'yaml'
4
+
5
+ travis_config_path = File.expand_path('../../.travis.yml', __FILE__)
6
+ travis_config = YAML.load_file(travis_config_path)
7
+ puts travis_config.fetch('rvm').join(' ')
@@ -0,0 +1,17 @@
1
+ #!/bin/bash
2
+
3
+ set -euo pipefail
4
+
5
+ SUPPORTED_VERSIONS=$(bin/supported_ruby_versions)
6
+ gem="$1"
7
+
8
+ update-gem-for-version() {
9
+ local version="$1"
10
+ (export RBENV_VERSION=$version; bundle update "$gem"; bundle exec appraisal update "$gem")
11
+ }
12
+
13
+ for version in $SUPPORTED_VERSIONS; do
14
+ echo
15
+ echo "*** Updating $gem for $version ***"
16
+ update-gem-for-version $version
17
+ done
@@ -0,0 +1,16 @@
1
+ #!/bin/bash
2
+
3
+ set -euo pipefail
4
+
5
+ SUPPORTED_VERSIONS=$(bin/supported_ruby_versions)
6
+
7
+ update-gems-for-version() {
8
+ local version="$1"
9
+ (export RBENV_VERSION=$version; bundle update "${@:2}"; bundle exec appraisal update "${@:2}")
10
+ }
11
+
12
+ for version in $SUPPORTED_VERSIONS; do
13
+ echo
14
+ echo "*** Updating gems for $version ***"
15
+ update-gems-for-version "$version" "$@"
16
+ done
File without changes
@@ -0,0 +1,35 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "bundler", "~> 1.0"
7
+ gem "byebug"
8
+ gem "m"
9
+ gem "minitest"
10
+ gem "mocha"
11
+ gem "pry", "~> 0.12.0"
12
+ gem "pry-byebug", "~> 3.6.0"
13
+ gem "rake"
14
+ gem "rubocop", "0.71.0"
15
+ gem "snowglobe", ">= 0.3.0"
16
+ gem "test-unit"
17
+ gem "warnings_logger"
18
+ gem "sqlite3", "~> 1.3.6"
19
+ gem "spring"
20
+ gem "spring-commands-rspec"
21
+ gem "minitest-reporters"
22
+ gem "rails", "~> 4.2.10"
23
+ gem "sass-rails", "~> 5.0"
24
+ gem "uglifier", ">= 1.3.0"
25
+ gem "coffee-rails", "~> 4.1.0"
26
+ gem "jquery-rails"
27
+ gem "turbolinks"
28
+ gem "jbuilder", "~> 2.0"
29
+ gem "sdoc", "~> 0.4.0", group: :doc
30
+ gem "bcrypt", "~> 3.1.7"
31
+ gem "activeresource", "4.0.0"
32
+ gem "json", "~> 1.4"
33
+ gem "protected_attributes", "~> 1.0.6"
34
+
35
+ gemspec path: "../"
@@ -0,0 +1,234 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ shoulda-context (2.0.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ actionmailer (4.2.11.1)
10
+ actionpack (= 4.2.11.1)
11
+ actionview (= 4.2.11.1)
12
+ activejob (= 4.2.11.1)
13
+ mail (~> 2.5, >= 2.5.4)
14
+ rails-dom-testing (~> 1.0, >= 1.0.5)
15
+ actionpack (4.2.11.1)
16
+ actionview (= 4.2.11.1)
17
+ activesupport (= 4.2.11.1)
18
+ rack (~> 1.6)
19
+ rack-test (~> 0.6.2)
20
+ rails-dom-testing (~> 1.0, >= 1.0.5)
21
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
22
+ actionview (4.2.11.1)
23
+ activesupport (= 4.2.11.1)
24
+ builder (~> 3.1)
25
+ erubis (~> 2.7.0)
26
+ rails-dom-testing (~> 1.0, >= 1.0.5)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
28
+ activejob (4.2.11.1)
29
+ activesupport (= 4.2.11.1)
30
+ globalid (>= 0.3.0)
31
+ activemodel (4.2.11.1)
32
+ activesupport (= 4.2.11.1)
33
+ builder (~> 3.1)
34
+ activerecord (4.2.11.1)
35
+ activemodel (= 4.2.11.1)
36
+ activesupport (= 4.2.11.1)
37
+ arel (~> 6.0)
38
+ activeresource (4.0.0)
39
+ activemodel (~> 4.0)
40
+ activesupport (~> 4.0)
41
+ rails-observers (~> 0.1.1)
42
+ activesupport (4.2.11.1)
43
+ i18n (~> 0.7)
44
+ minitest (~> 5.1)
45
+ thread_safe (~> 0.3, >= 0.3.4)
46
+ tzinfo (~> 1.1)
47
+ ansi (1.5.0)
48
+ appraisal (2.2.0)
49
+ bundler
50
+ rake
51
+ thor (>= 0.14.0)
52
+ arel (6.0.4)
53
+ ast (2.4.0)
54
+ bcrypt (3.1.13)
55
+ builder (3.2.4)
56
+ byebug (10.0.2)
57
+ coderay (1.1.2)
58
+ coffee-rails (4.1.1)
59
+ coffee-script (>= 2.2.0)
60
+ railties (>= 4.0.0, < 5.1.x)
61
+ coffee-script (2.4.1)
62
+ coffee-script-source
63
+ execjs
64
+ coffee-script-source (1.12.2)
65
+ concurrent-ruby (1.1.6)
66
+ crass (1.0.6)
67
+ erubis (2.7.0)
68
+ execjs (2.7.0)
69
+ ffi (1.12.2)
70
+ globalid (0.4.2)
71
+ activesupport (>= 4.2.0)
72
+ i18n (0.9.5)
73
+ concurrent-ruby (~> 1.0)
74
+ jaro_winkler (1.5.4)
75
+ jbuilder (2.9.1)
76
+ activesupport (>= 4.2.0)
77
+ jquery-rails (4.3.5)
78
+ rails-dom-testing (>= 1, < 3)
79
+ railties (>= 4.2.0)
80
+ thor (>= 0.14, < 2.0)
81
+ json (1.8.6)
82
+ loofah (2.4.0)
83
+ crass (~> 1.0.2)
84
+ nokogiri (>= 1.5.9)
85
+ m (1.5.1)
86
+ method_source (>= 0.6.7)
87
+ rake (>= 0.9.2.2)
88
+ mail (2.7.1)
89
+ mini_mime (>= 0.1.1)
90
+ method_source (0.9.2)
91
+ mini_mime (1.0.2)
92
+ mini_portile2 (2.4.0)
93
+ minitest (5.14.0)
94
+ minitest-reporters (1.4.2)
95
+ ansi
96
+ builder
97
+ minitest (>= 5.0)
98
+ ruby-progressbar
99
+ mocha (1.11.2)
100
+ nokogiri (1.10.9)
101
+ mini_portile2 (~> 2.4.0)
102
+ parallel (1.19.1)
103
+ parser (2.7.1.0)
104
+ ast (~> 2.4.0)
105
+ power_assert (1.1.7)
106
+ protected_attributes (1.0.9)
107
+ activemodel (>= 4.0.1, < 5.0)
108
+ pry (0.12.2)
109
+ coderay (~> 1.1.0)
110
+ method_source (~> 0.9.0)
111
+ pry-byebug (3.6.0)
112
+ byebug (~> 10.0)
113
+ pry (~> 0.10)
114
+ rack (1.6.13)
115
+ rack-test (0.6.3)
116
+ rack (>= 1.0)
117
+ rails (4.2.11.1)
118
+ actionmailer (= 4.2.11.1)
119
+ actionpack (= 4.2.11.1)
120
+ actionview (= 4.2.11.1)
121
+ activejob (= 4.2.11.1)
122
+ activemodel (= 4.2.11.1)
123
+ activerecord (= 4.2.11.1)
124
+ activesupport (= 4.2.11.1)
125
+ bundler (>= 1.3.0, < 2.0)
126
+ railties (= 4.2.11.1)
127
+ sprockets-rails
128
+ rails-deprecated_sanitizer (1.0.3)
129
+ activesupport (>= 4.2.0.alpha)
130
+ rails-dom-testing (1.0.9)
131
+ activesupport (>= 4.2.0, < 5.0)
132
+ nokogiri (~> 1.6)
133
+ rails-deprecated_sanitizer (>= 1.0.1)
134
+ rails-html-sanitizer (1.3.0)
135
+ loofah (~> 2.3)
136
+ rails-observers (0.1.5)
137
+ activemodel (>= 4.0)
138
+ railties (4.2.11.1)
139
+ actionpack (= 4.2.11.1)
140
+ activesupport (= 4.2.11.1)
141
+ rake (>= 0.8.7)
142
+ thor (>= 0.18.1, < 2.0)
143
+ rainbow (3.0.0)
144
+ rake (13.0.1)
145
+ rb-fsevent (0.10.3)
146
+ rb-inotify (0.10.1)
147
+ ffi (~> 1.0)
148
+ rdoc (4.3.0)
149
+ rubocop (0.71.0)
150
+ jaro_winkler (~> 1.5.1)
151
+ parallel (~> 1.10)
152
+ parser (>= 2.6)
153
+ rainbow (>= 2.2.2, < 4.0)
154
+ ruby-progressbar (~> 1.7)
155
+ unicode-display_width (>= 1.4.0, < 1.7)
156
+ ruby-progressbar (1.10.1)
157
+ sass (3.7.4)
158
+ sass-listen (~> 4.0.0)
159
+ sass-listen (4.0.0)
160
+ rb-fsevent (~> 0.9, >= 0.9.4)
161
+ rb-inotify (~> 0.9, >= 0.9.7)
162
+ sass-rails (5.0.7)
163
+ railties (>= 4.0.0, < 6)
164
+ sass (~> 3.1)
165
+ sprockets (>= 2.8, < 4.0)
166
+ sprockets-rails (>= 2.0, < 4.0)
167
+ tilt (>= 1.1, < 3)
168
+ sdoc (0.4.2)
169
+ json (~> 1.7, >= 1.7.7)
170
+ rdoc (~> 4.0)
171
+ snowglobe (0.3.0)
172
+ spring (2.1.0)
173
+ spring-commands-rspec (1.0.4)
174
+ spring (>= 0.9.1)
175
+ sprockets (3.7.2)
176
+ concurrent-ruby (~> 1.0)
177
+ rack (> 1, < 3)
178
+ sprockets-rails (3.2.1)
179
+ actionpack (>= 4.0)
180
+ activesupport (>= 4.0)
181
+ sprockets (>= 3.0.0)
182
+ sqlite3 (1.3.13)
183
+ test-unit (3.3.5)
184
+ power_assert
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
+ uglifier (4.2.0)
194
+ execjs (>= 0.3.0, < 3)
195
+ unicode-display_width (1.6.1)
196
+ warnings_logger (0.1.0)
197
+
198
+ PLATFORMS
199
+ ruby
200
+
201
+ DEPENDENCIES
202
+ activeresource (= 4.0.0)
203
+ appraisal
204
+ bcrypt (~> 3.1.7)
205
+ bundler (~> 1.0)
206
+ byebug
207
+ coffee-rails (~> 4.1.0)
208
+ jbuilder (~> 2.0)
209
+ jquery-rails
210
+ json (~> 1.4)
211
+ m
212
+ minitest
213
+ minitest-reporters
214
+ mocha
215
+ protected_attributes (~> 1.0.6)
216
+ pry (~> 0.12.0)
217
+ pry-byebug (~> 3.6.0)
218
+ rails (~> 4.2.10)
219
+ rake
220
+ rubocop (= 0.71.0)
221
+ sass-rails (~> 5.0)
222
+ sdoc (~> 0.4.0)
223
+ shoulda-context!
224
+ snowglobe (>= 0.3.0)
225
+ spring
226
+ spring-commands-rspec
227
+ sqlite3 (~> 1.3.6)
228
+ test-unit
229
+ turbolinks
230
+ uglifier (>= 1.3.0)
231
+ warnings_logger
232
+
233
+ BUNDLED WITH
234
+ 1.17.3
@@ -0,0 +1,33 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "bundler", "~> 1.0"
7
+ gem "byebug"
8
+ gem "m"
9
+ gem "minitest"
10
+ gem "mocha"
11
+ gem "pry", "~> 0.12.0"
12
+ gem "pry-byebug", "~> 3.6.0"
13
+ gem "rake"
14
+ gem "rubocop", "0.71.0"
15
+ gem "snowglobe", ">= 0.3.0"
16
+ gem "test-unit"
17
+ gem "warnings_logger"
18
+ gem "sqlite3", "~> 1.3.6"
19
+ gem "spring"
20
+ gem "spring-commands-rspec"
21
+ gem "minitest-reporters"
22
+ gem "rails", "~> 5.0.7"
23
+ gem "rails-controller-testing", ">= 1.0.1"
24
+ gem "puma", "~> 3.0"
25
+ gem "sass-rails", "~> 5.0"
26
+ gem "jquery-rails"
27
+ gem "turbolinks", "~> 5"
28
+ gem "jbuilder", "~> 2.5"
29
+ gem "bcrypt", "~> 3.1.7"
30
+ gem "listen", "~> 3.0.5"
31
+ gem "spring-watcher-listen", "~> 2.0.0"
32
+
33
+ gemspec path: "../"
@@ -0,0 +1,226 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ shoulda-context (2.0.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ actioncable (5.0.7.2)
10
+ actionpack (= 5.0.7.2)
11
+ nio4r (>= 1.2, < 3.0)
12
+ websocket-driver (~> 0.6.1)
13
+ actionmailer (5.0.7.2)
14
+ actionpack (= 5.0.7.2)
15
+ actionview (= 5.0.7.2)
16
+ activejob (= 5.0.7.2)
17
+ mail (~> 2.5, >= 2.5.4)
18
+ rails-dom-testing (~> 2.0)
19
+ actionpack (5.0.7.2)
20
+ actionview (= 5.0.7.2)
21
+ activesupport (= 5.0.7.2)
22
+ rack (~> 2.0)
23
+ rack-test (~> 0.6.3)
24
+ rails-dom-testing (~> 2.0)
25
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
26
+ actionview (5.0.7.2)
27
+ activesupport (= 5.0.7.2)
28
+ builder (~> 3.1)
29
+ erubis (~> 2.7.0)
30
+ rails-dom-testing (~> 2.0)
31
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
32
+ activejob (5.0.7.2)
33
+ activesupport (= 5.0.7.2)
34
+ globalid (>= 0.3.6)
35
+ activemodel (5.0.7.2)
36
+ activesupport (= 5.0.7.2)
37
+ activerecord (5.0.7.2)
38
+ activemodel (= 5.0.7.2)
39
+ activesupport (= 5.0.7.2)
40
+ arel (~> 7.0)
41
+ activesupport (5.0.7.2)
42
+ concurrent-ruby (~> 1.0, >= 1.0.2)
43
+ i18n (>= 0.7, < 2)
44
+ minitest (~> 5.1)
45
+ tzinfo (~> 1.1)
46
+ ansi (1.5.0)
47
+ appraisal (2.2.0)
48
+ bundler
49
+ rake
50
+ thor (>= 0.14.0)
51
+ arel (7.1.4)
52
+ ast (2.4.0)
53
+ bcrypt (3.1.13)
54
+ builder (3.2.4)
55
+ byebug (10.0.2)
56
+ coderay (1.1.2)
57
+ concurrent-ruby (1.1.6)
58
+ crass (1.0.6)
59
+ erubis (2.7.0)
60
+ ffi (1.12.2)
61
+ globalid (0.4.2)
62
+ activesupport (>= 4.2.0)
63
+ i18n (1.8.2)
64
+ concurrent-ruby (~> 1.0)
65
+ jaro_winkler (1.5.4)
66
+ jbuilder (2.10.0)
67
+ activesupport (>= 5.0.0)
68
+ jquery-rails (4.3.5)
69
+ rails-dom-testing (>= 1, < 3)
70
+ railties (>= 4.2.0)
71
+ thor (>= 0.14, < 2.0)
72
+ listen (3.0.8)
73
+ rb-fsevent (~> 0.9, >= 0.9.4)
74
+ rb-inotify (~> 0.9, >= 0.9.7)
75
+ loofah (2.4.0)
76
+ crass (~> 1.0.2)
77
+ nokogiri (>= 1.5.9)
78
+ m (1.5.1)
79
+ method_source (>= 0.6.7)
80
+ rake (>= 0.9.2.2)
81
+ mail (2.7.1)
82
+ mini_mime (>= 0.1.1)
83
+ method_source (0.9.2)
84
+ mini_mime (1.0.2)
85
+ mini_portile2 (2.4.0)
86
+ minitest (5.14.0)
87
+ minitest-reporters (1.4.2)
88
+ ansi
89
+ builder
90
+ minitest (>= 5.0)
91
+ ruby-progressbar
92
+ mocha (1.11.2)
93
+ nio4r (2.5.2)
94
+ nokogiri (1.10.9)
95
+ mini_portile2 (~> 2.4.0)
96
+ parallel (1.19.1)
97
+ parser (2.7.1.0)
98
+ ast (~> 2.4.0)
99
+ power_assert (1.1.7)
100
+ pry (0.12.2)
101
+ coderay (~> 1.1.0)
102
+ method_source (~> 0.9.0)
103
+ pry-byebug (3.6.0)
104
+ byebug (~> 10.0)
105
+ pry (~> 0.10)
106
+ puma (3.12.4)
107
+ rack (2.2.2)
108
+ rack-test (0.6.3)
109
+ rack (>= 1.0)
110
+ rails (5.0.7.2)
111
+ actioncable (= 5.0.7.2)
112
+ actionmailer (= 5.0.7.2)
113
+ actionpack (= 5.0.7.2)
114
+ actionview (= 5.0.7.2)
115
+ activejob (= 5.0.7.2)
116
+ activemodel (= 5.0.7.2)
117
+ activerecord (= 5.0.7.2)
118
+ activesupport (= 5.0.7.2)
119
+ bundler (>= 1.3.0)
120
+ railties (= 5.0.7.2)
121
+ sprockets-rails (>= 2.0.0)
122
+ rails-controller-testing (1.0.4)
123
+ actionpack (>= 5.0.1.x)
124
+ actionview (>= 5.0.1.x)
125
+ activesupport (>= 5.0.1.x)
126
+ rails-dom-testing (2.0.3)
127
+ activesupport (>= 4.2.0)
128
+ nokogiri (>= 1.6)
129
+ rails-html-sanitizer (1.3.0)
130
+ loofah (~> 2.3)
131
+ railties (5.0.7.2)
132
+ actionpack (= 5.0.7.2)
133
+ activesupport (= 5.0.7.2)
134
+ method_source
135
+ rake (>= 0.8.7)
136
+ thor (>= 0.18.1, < 2.0)
137
+ rainbow (3.0.0)
138
+ rake (13.0.1)
139
+ rb-fsevent (0.10.3)
140
+ rb-inotify (0.10.1)
141
+ ffi (~> 1.0)
142
+ rubocop (0.71.0)
143
+ jaro_winkler (~> 1.5.1)
144
+ parallel (~> 1.10)
145
+ parser (>= 2.6)
146
+ rainbow (>= 2.2.2, < 4.0)
147
+ ruby-progressbar (~> 1.7)
148
+ unicode-display_width (>= 1.4.0, < 1.7)
149
+ ruby-progressbar (1.10.1)
150
+ sass (3.7.4)
151
+ sass-listen (~> 4.0.0)
152
+ sass-listen (4.0.0)
153
+ rb-fsevent (~> 0.9, >= 0.9.4)
154
+ rb-inotify (~> 0.9, >= 0.9.7)
155
+ sass-rails (5.0.7)
156
+ railties (>= 4.0.0, < 6)
157
+ sass (~> 3.1)
158
+ sprockets (>= 2.8, < 4.0)
159
+ sprockets-rails (>= 2.0, < 4.0)
160
+ tilt (>= 1.1, < 3)
161
+ snowglobe (0.3.0)
162
+ spring (2.1.0)
163
+ spring-commands-rspec (1.0.4)
164
+ spring (>= 0.9.1)
165
+ spring-watcher-listen (2.0.1)
166
+ listen (>= 2.7, < 4.0)
167
+ spring (>= 1.2, < 3.0)
168
+ sprockets (3.7.2)
169
+ concurrent-ruby (~> 1.0)
170
+ rack (> 1, < 3)
171
+ sprockets-rails (3.2.1)
172
+ actionpack (>= 4.0)
173
+ activesupport (>= 4.0)
174
+ sprockets (>= 3.0.0)
175
+ sqlite3 (1.3.13)
176
+ test-unit (3.3.5)
177
+ power_assert
178
+ thor (1.0.1)
179
+ thread_safe (0.3.6)
180
+ tilt (2.0.10)
181
+ turbolinks (5.2.1)
182
+ turbolinks-source (~> 5.2)
183
+ turbolinks-source (5.2.0)
184
+ tzinfo (1.2.7)
185
+ thread_safe (~> 0.1)
186
+ unicode-display_width (1.6.1)
187
+ warnings_logger (0.1.0)
188
+ websocket-driver (0.6.5)
189
+ websocket-extensions (>= 0.1.0)
190
+ websocket-extensions (0.1.4)
191
+
192
+ PLATFORMS
193
+ ruby
194
+
195
+ DEPENDENCIES
196
+ appraisal
197
+ bcrypt (~> 3.1.7)
198
+ bundler (~> 1.0)
199
+ byebug
200
+ jbuilder (~> 2.5)
201
+ jquery-rails
202
+ listen (~> 3.0.5)
203
+ m
204
+ minitest
205
+ minitest-reporters
206
+ mocha
207
+ pry (~> 0.12.0)
208
+ pry-byebug (~> 3.6.0)
209
+ puma (~> 3.0)
210
+ rails (~> 5.0.7)
211
+ rails-controller-testing (>= 1.0.1)
212
+ rake
213
+ rubocop (= 0.71.0)
214
+ sass-rails (~> 5.0)
215
+ shoulda-context!
216
+ snowglobe (>= 0.3.0)
217
+ spring
218
+ spring-commands-rspec
219
+ spring-watcher-listen (~> 2.0.0)
220
+ sqlite3 (~> 1.3.6)
221
+ test-unit
222
+ turbolinks (~> 5)
223
+ warnings_logger
224
+
225
+ BUNDLED WITH
226
+ 1.17.3