shoulda 3.4.0 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -7
- data/.hound.yml +3 -0
- data/.rubocop.yml +192 -0
- data/.ruby-version +1 -0
- data/.travis.yml +33 -2
- data/Appraisals +109 -8
- data/CHANGELOG.md +10 -0
- data/CONTRIBUTING.md +6 -1
- data/Gemfile +13 -0
- data/README.md +67 -74
- data/Rakefile +24 -10
- data/gemfiles/rails_4_2.gemfile +34 -0
- data/gemfiles/rails_4_2.gemfile.lock +240 -0
- data/gemfiles/rails_5_0.gemfile +32 -0
- data/gemfiles/rails_5_0.gemfile.lock +232 -0
- data/gemfiles/rails_5_1.gemfile +33 -0
- data/gemfiles/rails_5_1.gemfile.lock +247 -0
- data/gemfiles/rails_5_2.gemfile +35 -0
- data/gemfiles/rails_5_2.gemfile.lock +266 -0
- data/gemfiles/rails_6_0.gemfile +37 -0
- data/gemfiles/rails_6_0.gemfile.lock +291 -0
- data/lib/shoulda/version.rb +1 -1
- data/script/install_gems_in_all_appraisals +16 -0
- data/script/run_all_tests +16 -0
- data/script/supported_ruby_versions +7 -0
- data/script/update_gem_in_all_appraisals +17 -0
- data/script/update_gems_in_all_appraisals +16 -0
- data/shoulda.gemspec +23 -23
- data/test/acceptance/integrates_with_rails_test.rb +580 -0
- data/test/acceptance_test_helper.rb +43 -0
- data/test/support/acceptance/add_shoulda_to_project.rb +73 -0
- data/test/support/acceptance/helpers/array_helpers.rb +13 -0
- data/test/support/acceptance/helpers/pluralization_helpers.rb +13 -0
- data/test/support/acceptance/matchers/have_output.rb +33 -0
- data/test/support/acceptance/matchers/indicate_that_tests_were_run.rb +109 -0
- data/test/support/acceptance/rails_application_with_shoulda.rb +47 -0
- data/test/support/current_bundle.rb +61 -0
- data/test/support/snowglobe.rb +5 -0
- data/test/test_helper.rb +23 -0
- metadata +61 -153
- data/features/rails_integration.feature +0 -87
- data/features/step_definitions/rails_steps.rb +0 -77
- data/features/support/env.rb +0 -14
- data/gemfiles/3.0.gemfile +0 -7
- data/gemfiles/3.0.gemfile.lock +0 -127
- data/gemfiles/3.1.gemfile +0 -9
- data/gemfiles/3.1.gemfile.lock +0 -149
- data/gemfiles/3.2.gemfile +0 -9
- data/gemfiles/3.2.gemfile.lock +0 -146
@@ -0,0 +1,33 @@
|
|
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.1.6"
|
22
|
+
gem "rails-controller-testing", ">= 1.0.1"
|
23
|
+
gem "puma", "~> 3.7"
|
24
|
+
gem "sass-rails", "~> 5.0"
|
25
|
+
gem "turbolinks", "~> 5"
|
26
|
+
gem "jbuilder", "~> 2.5"
|
27
|
+
gem "bcrypt", "~> 3.1.7"
|
28
|
+
gem "capybara", "~> 2.13"
|
29
|
+
gem "selenium-webdriver"
|
30
|
+
gem "listen", ">= 3.0.5", "< 3.2"
|
31
|
+
gem "spring-watcher-listen", "~> 2.0.0"
|
32
|
+
|
33
|
+
gemspec path: "../"
|
@@ -0,0 +1,247 @@
|
|
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.1.7)
|
12
|
+
actionpack (= 5.1.7)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (~> 0.6.1)
|
15
|
+
actionmailer (5.1.7)
|
16
|
+
actionpack (= 5.1.7)
|
17
|
+
actionview (= 5.1.7)
|
18
|
+
activejob (= 5.1.7)
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
20
|
+
rails-dom-testing (~> 2.0)
|
21
|
+
actionpack (5.1.7)
|
22
|
+
actionview (= 5.1.7)
|
23
|
+
activesupport (= 5.1.7)
|
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.1.7)
|
29
|
+
activesupport (= 5.1.7)
|
30
|
+
builder (~> 3.1)
|
31
|
+
erubi (~> 1.4)
|
32
|
+
rails-dom-testing (~> 2.0)
|
33
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
34
|
+
activejob (5.1.7)
|
35
|
+
activesupport (= 5.1.7)
|
36
|
+
globalid (>= 0.3.6)
|
37
|
+
activemodel (5.1.7)
|
38
|
+
activesupport (= 5.1.7)
|
39
|
+
activerecord (5.1.7)
|
40
|
+
activemodel (= 5.1.7)
|
41
|
+
activesupport (= 5.1.7)
|
42
|
+
arel (~> 8.0)
|
43
|
+
activesupport (5.1.7)
|
44
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
45
|
+
i18n (>= 0.7, < 2)
|
46
|
+
minitest (~> 5.1)
|
47
|
+
tzinfo (~> 1.1)
|
48
|
+
addressable (2.7.0)
|
49
|
+
public_suffix (>= 2.0.2, < 5.0)
|
50
|
+
ansi (1.5.0)
|
51
|
+
appraisal (2.2.0)
|
52
|
+
bundler
|
53
|
+
rake
|
54
|
+
thor (>= 0.14.0)
|
55
|
+
arel (8.0.0)
|
56
|
+
ast (2.4.0)
|
57
|
+
bcrypt (3.1.13)
|
58
|
+
builder (3.2.4)
|
59
|
+
byebug (10.0.2)
|
60
|
+
capybara (2.18.0)
|
61
|
+
addressable
|
62
|
+
mini_mime (>= 0.1.3)
|
63
|
+
nokogiri (>= 1.3.3)
|
64
|
+
rack (>= 1.0.0)
|
65
|
+
rack-test (>= 0.5.4)
|
66
|
+
xpath (>= 2.0, < 4.0)
|
67
|
+
childprocess (3.0.0)
|
68
|
+
coderay (1.1.2)
|
69
|
+
concurrent-ruby (1.1.6)
|
70
|
+
crass (1.0.6)
|
71
|
+
erubi (1.9.0)
|
72
|
+
ffi (1.12.2)
|
73
|
+
globalid (0.4.2)
|
74
|
+
activesupport (>= 4.2.0)
|
75
|
+
i18n (1.8.2)
|
76
|
+
concurrent-ruby (~> 1.0)
|
77
|
+
jaro_winkler (1.5.4)
|
78
|
+
jbuilder (2.10.0)
|
79
|
+
activesupport (>= 5.0.0)
|
80
|
+
listen (3.1.5)
|
81
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
82
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
83
|
+
ruby_dep (~> 1.2)
|
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
|
+
nio4r (2.5.2)
|
104
|
+
nokogiri (1.10.9)
|
105
|
+
mini_portile2 (~> 2.4.0)
|
106
|
+
parallel (1.19.1)
|
107
|
+
parser (2.7.1.0)
|
108
|
+
ast (~> 2.4.0)
|
109
|
+
pry (0.12.2)
|
110
|
+
coderay (~> 1.1.0)
|
111
|
+
method_source (~> 0.9.0)
|
112
|
+
pry-byebug (3.6.0)
|
113
|
+
byebug (~> 10.0)
|
114
|
+
pry (~> 0.10)
|
115
|
+
public_suffix (4.0.3)
|
116
|
+
puma (3.12.4)
|
117
|
+
rack (2.2.2)
|
118
|
+
rack-test (1.1.0)
|
119
|
+
rack (>= 1.0, < 3)
|
120
|
+
rails (5.1.7)
|
121
|
+
actioncable (= 5.1.7)
|
122
|
+
actionmailer (= 5.1.7)
|
123
|
+
actionpack (= 5.1.7)
|
124
|
+
actionview (= 5.1.7)
|
125
|
+
activejob (= 5.1.7)
|
126
|
+
activemodel (= 5.1.7)
|
127
|
+
activerecord (= 5.1.7)
|
128
|
+
activesupport (= 5.1.7)
|
129
|
+
bundler (>= 1.3.0)
|
130
|
+
railties (= 5.1.7)
|
131
|
+
sprockets-rails (>= 2.0.0)
|
132
|
+
rails-controller-testing (1.0.4)
|
133
|
+
actionpack (>= 5.0.1.x)
|
134
|
+
actionview (>= 5.0.1.x)
|
135
|
+
activesupport (>= 5.0.1.x)
|
136
|
+
rails-dom-testing (2.0.3)
|
137
|
+
activesupport (>= 4.2.0)
|
138
|
+
nokogiri (>= 1.6)
|
139
|
+
rails-html-sanitizer (1.3.0)
|
140
|
+
loofah (~> 2.3)
|
141
|
+
railties (5.1.7)
|
142
|
+
actionpack (= 5.1.7)
|
143
|
+
activesupport (= 5.1.7)
|
144
|
+
method_source
|
145
|
+
rake (>= 0.8.7)
|
146
|
+
thor (>= 0.18.1, < 2.0)
|
147
|
+
rainbow (3.0.0)
|
148
|
+
rake (13.0.1)
|
149
|
+
rb-fsevent (0.10.3)
|
150
|
+
rb-inotify (0.10.1)
|
151
|
+
ffi (~> 1.0)
|
152
|
+
rubocop (0.71.0)
|
153
|
+
jaro_winkler (~> 1.5.1)
|
154
|
+
parallel (~> 1.10)
|
155
|
+
parser (>= 2.6)
|
156
|
+
rainbow (>= 2.2.2, < 4.0)
|
157
|
+
ruby-progressbar (~> 1.7)
|
158
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
159
|
+
rubocop-rails (2.0.1)
|
160
|
+
rack (>= 1.1)
|
161
|
+
rubocop (>= 0.70.0)
|
162
|
+
ruby-progressbar (1.10.1)
|
163
|
+
ruby_dep (1.5.0)
|
164
|
+
rubyzip (1.3.0)
|
165
|
+
sass (3.7.4)
|
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
|
+
selenium-webdriver (3.142.7)
|
177
|
+
childprocess (>= 0.5, < 4.0)
|
178
|
+
rubyzip (>= 1.2.2)
|
179
|
+
shoulda-context (2.0.0)
|
180
|
+
shoulda-matchers (4.3.0)
|
181
|
+
activesupport (>= 4.2.0)
|
182
|
+
snowglobe (0.3.0)
|
183
|
+
spring (2.1.0)
|
184
|
+
spring-commands-rspec (1.0.4)
|
185
|
+
spring (>= 0.9.1)
|
186
|
+
spring-watcher-listen (2.0.1)
|
187
|
+
listen (>= 2.7, < 4.0)
|
188
|
+
spring (>= 1.2, < 3.0)
|
189
|
+
sprockets (3.7.2)
|
190
|
+
concurrent-ruby (~> 1.0)
|
191
|
+
rack (> 1, < 3)
|
192
|
+
sprockets-rails (3.2.1)
|
193
|
+
actionpack (>= 4.0)
|
194
|
+
activesupport (>= 4.0)
|
195
|
+
sprockets (>= 3.0.0)
|
196
|
+
sqlite3 (1.3.13)
|
197
|
+
thor (1.0.1)
|
198
|
+
thread_safe (0.3.6)
|
199
|
+
tilt (2.0.10)
|
200
|
+
turbolinks (5.2.1)
|
201
|
+
turbolinks-source (~> 5.2)
|
202
|
+
turbolinks-source (5.2.0)
|
203
|
+
tzinfo (1.2.7)
|
204
|
+
thread_safe (~> 0.1)
|
205
|
+
unicode-display_width (1.6.1)
|
206
|
+
warnings_logger (0.1.0)
|
207
|
+
websocket-driver (0.6.5)
|
208
|
+
websocket-extensions (>= 0.1.0)
|
209
|
+
websocket-extensions (0.1.4)
|
210
|
+
xpath (3.2.0)
|
211
|
+
nokogiri (~> 1.8)
|
212
|
+
|
213
|
+
PLATFORMS
|
214
|
+
ruby
|
215
|
+
|
216
|
+
DEPENDENCIES
|
217
|
+
appraisal (~> 2.1)
|
218
|
+
bcrypt (~> 3.1.7)
|
219
|
+
bundler (~> 1.0)
|
220
|
+
capybara (~> 2.13)
|
221
|
+
jbuilder (~> 2.5)
|
222
|
+
listen (>= 3.0.5, < 3.2)
|
223
|
+
m
|
224
|
+
minitest (~> 5.0)
|
225
|
+
minitest-reporters
|
226
|
+
mry
|
227
|
+
pry (~> 0.12.0)
|
228
|
+
pry-byebug (~> 3.6.0)
|
229
|
+
puma (~> 3.7)
|
230
|
+
rails (~> 5.1.6)
|
231
|
+
rails-controller-testing (>= 1.0.1)
|
232
|
+
rubocop (= 0.71.0)
|
233
|
+
rubocop-rails
|
234
|
+
rubyzip (~> 1.3.0)
|
235
|
+
sass-rails (~> 5.0)
|
236
|
+
selenium-webdriver
|
237
|
+
shoulda!
|
238
|
+
snowglobe (>= 0.3.0)
|
239
|
+
spring
|
240
|
+
spring-commands-rspec
|
241
|
+
spring-watcher-listen (~> 2.0.0)
|
242
|
+
sqlite3 (~> 1.3.6)
|
243
|
+
turbolinks (~> 5)
|
244
|
+
warnings_logger
|
245
|
+
|
246
|
+
BUNDLED WITH
|
247
|
+
1.17.3
|
@@ -0,0 +1,35 @@
|
|
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.2.2"
|
22
|
+
gem "rails-controller-testing", ">= 1.0.1"
|
23
|
+
gem "puma", "~> 3.11"
|
24
|
+
gem "bootsnap", ">= 1.1.0", require: false
|
25
|
+
gem "sass-rails", "~> 5.0"
|
26
|
+
gem "turbolinks", "~> 5"
|
27
|
+
gem "jbuilder", "~> 2.5"
|
28
|
+
gem "bcrypt", "~> 3.1.7"
|
29
|
+
gem "capybara", "~> 3.1.1"
|
30
|
+
gem "selenium-webdriver"
|
31
|
+
gem "chromedriver-helper"
|
32
|
+
gem "listen", ">= 3.0.5", "< 3.2"
|
33
|
+
gem "spring-watcher-listen", "~> 2.0.0"
|
34
|
+
|
35
|
+
gemspec path: "../"
|
@@ -0,0 +1,266 @@
|
|
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.2.4.2)
|
12
|
+
actionpack (= 5.2.4.2)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (>= 0.6.1)
|
15
|
+
actionmailer (5.2.4.2)
|
16
|
+
actionpack (= 5.2.4.2)
|
17
|
+
actionview (= 5.2.4.2)
|
18
|
+
activejob (= 5.2.4.2)
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
20
|
+
rails-dom-testing (~> 2.0)
|
21
|
+
actionpack (5.2.4.2)
|
22
|
+
actionview (= 5.2.4.2)
|
23
|
+
activesupport (= 5.2.4.2)
|
24
|
+
rack (~> 2.0, >= 2.0.8)
|
25
|
+
rack-test (>= 0.6.3)
|
26
|
+
rails-dom-testing (~> 2.0)
|
27
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
28
|
+
actionview (5.2.4.2)
|
29
|
+
activesupport (= 5.2.4.2)
|
30
|
+
builder (~> 3.1)
|
31
|
+
erubi (~> 1.4)
|
32
|
+
rails-dom-testing (~> 2.0)
|
33
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
34
|
+
activejob (5.2.4.2)
|
35
|
+
activesupport (= 5.2.4.2)
|
36
|
+
globalid (>= 0.3.6)
|
37
|
+
activemodel (5.2.4.2)
|
38
|
+
activesupport (= 5.2.4.2)
|
39
|
+
activerecord (5.2.4.2)
|
40
|
+
activemodel (= 5.2.4.2)
|
41
|
+
activesupport (= 5.2.4.2)
|
42
|
+
arel (>= 9.0)
|
43
|
+
activestorage (5.2.4.2)
|
44
|
+
actionpack (= 5.2.4.2)
|
45
|
+
activerecord (= 5.2.4.2)
|
46
|
+
marcel (~> 0.3.1)
|
47
|
+
activesupport (5.2.4.2)
|
48
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
49
|
+
i18n (>= 0.7, < 2)
|
50
|
+
minitest (~> 5.1)
|
51
|
+
tzinfo (~> 1.1)
|
52
|
+
addressable (2.7.0)
|
53
|
+
public_suffix (>= 2.0.2, < 5.0)
|
54
|
+
ansi (1.5.0)
|
55
|
+
appraisal (2.2.0)
|
56
|
+
bundler
|
57
|
+
rake
|
58
|
+
thor (>= 0.14.0)
|
59
|
+
archive-zip (0.12.0)
|
60
|
+
io-like (~> 0.3.0)
|
61
|
+
arel (9.0.0)
|
62
|
+
ast (2.4.0)
|
63
|
+
bcrypt (3.1.13)
|
64
|
+
bootsnap (1.4.6)
|
65
|
+
msgpack (~> 1.0)
|
66
|
+
builder (3.2.4)
|
67
|
+
byebug (10.0.2)
|
68
|
+
capybara (3.1.1)
|
69
|
+
addressable
|
70
|
+
mini_mime (>= 0.1.3)
|
71
|
+
nokogiri (~> 1.8)
|
72
|
+
rack (>= 1.6.0)
|
73
|
+
rack-test (>= 0.6.3)
|
74
|
+
xpath (~> 3.0)
|
75
|
+
childprocess (3.0.0)
|
76
|
+
chromedriver-helper (2.1.1)
|
77
|
+
archive-zip (~> 0.10)
|
78
|
+
nokogiri (~> 1.8)
|
79
|
+
coderay (1.1.2)
|
80
|
+
concurrent-ruby (1.1.6)
|
81
|
+
crass (1.0.6)
|
82
|
+
erubi (1.9.0)
|
83
|
+
ffi (1.12.2)
|
84
|
+
globalid (0.4.2)
|
85
|
+
activesupport (>= 4.2.0)
|
86
|
+
i18n (1.8.2)
|
87
|
+
concurrent-ruby (~> 1.0)
|
88
|
+
io-like (0.3.1)
|
89
|
+
jaro_winkler (1.5.4)
|
90
|
+
jbuilder (2.10.0)
|
91
|
+
activesupport (>= 5.0.0)
|
92
|
+
listen (3.1.5)
|
93
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
94
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
95
|
+
ruby_dep (~> 1.2)
|
96
|
+
loofah (2.4.0)
|
97
|
+
crass (~> 1.0.2)
|
98
|
+
nokogiri (>= 1.5.9)
|
99
|
+
m (1.5.1)
|
100
|
+
method_source (>= 0.6.7)
|
101
|
+
rake (>= 0.9.2.2)
|
102
|
+
mail (2.7.1)
|
103
|
+
mini_mime (>= 0.1.1)
|
104
|
+
marcel (0.3.3)
|
105
|
+
mimemagic (~> 0.3.2)
|
106
|
+
method_source (0.9.2)
|
107
|
+
mimemagic (0.3.4)
|
108
|
+
mini_mime (1.0.2)
|
109
|
+
mini_portile2 (2.4.0)
|
110
|
+
minitest (5.14.0)
|
111
|
+
minitest-reporters (1.4.2)
|
112
|
+
ansi
|
113
|
+
builder
|
114
|
+
minitest (>= 5.0)
|
115
|
+
ruby-progressbar
|
116
|
+
mry (0.78.0.0)
|
117
|
+
rubocop (>= 0.41.0)
|
118
|
+
msgpack (1.3.3)
|
119
|
+
nio4r (2.5.2)
|
120
|
+
nokogiri (1.10.9)
|
121
|
+
mini_portile2 (~> 2.4.0)
|
122
|
+
parallel (1.19.1)
|
123
|
+
parser (2.7.1.0)
|
124
|
+
ast (~> 2.4.0)
|
125
|
+
pry (0.12.2)
|
126
|
+
coderay (~> 1.1.0)
|
127
|
+
method_source (~> 0.9.0)
|
128
|
+
pry-byebug (3.6.0)
|
129
|
+
byebug (~> 10.0)
|
130
|
+
pry (~> 0.10)
|
131
|
+
public_suffix (4.0.3)
|
132
|
+
puma (3.12.4)
|
133
|
+
rack (2.2.2)
|
134
|
+
rack-test (1.1.0)
|
135
|
+
rack (>= 1.0, < 3)
|
136
|
+
rails (5.2.4.2)
|
137
|
+
actioncable (= 5.2.4.2)
|
138
|
+
actionmailer (= 5.2.4.2)
|
139
|
+
actionpack (= 5.2.4.2)
|
140
|
+
actionview (= 5.2.4.2)
|
141
|
+
activejob (= 5.2.4.2)
|
142
|
+
activemodel (= 5.2.4.2)
|
143
|
+
activerecord (= 5.2.4.2)
|
144
|
+
activestorage (= 5.2.4.2)
|
145
|
+
activesupport (= 5.2.4.2)
|
146
|
+
bundler (>= 1.3.0)
|
147
|
+
railties (= 5.2.4.2)
|
148
|
+
sprockets-rails (>= 2.0.0)
|
149
|
+
rails-controller-testing (1.0.4)
|
150
|
+
actionpack (>= 5.0.1.x)
|
151
|
+
actionview (>= 5.0.1.x)
|
152
|
+
activesupport (>= 5.0.1.x)
|
153
|
+
rails-dom-testing (2.0.3)
|
154
|
+
activesupport (>= 4.2.0)
|
155
|
+
nokogiri (>= 1.6)
|
156
|
+
rails-html-sanitizer (1.3.0)
|
157
|
+
loofah (~> 2.3)
|
158
|
+
railties (5.2.4.2)
|
159
|
+
actionpack (= 5.2.4.2)
|
160
|
+
activesupport (= 5.2.4.2)
|
161
|
+
method_source
|
162
|
+
rake (>= 0.8.7)
|
163
|
+
thor (>= 0.19.0, < 2.0)
|
164
|
+
rainbow (3.0.0)
|
165
|
+
rake (13.0.1)
|
166
|
+
rb-fsevent (0.10.3)
|
167
|
+
rb-inotify (0.10.1)
|
168
|
+
ffi (~> 1.0)
|
169
|
+
rubocop (0.71.0)
|
170
|
+
jaro_winkler (~> 1.5.1)
|
171
|
+
parallel (~> 1.10)
|
172
|
+
parser (>= 2.6)
|
173
|
+
rainbow (>= 2.2.2, < 4.0)
|
174
|
+
ruby-progressbar (~> 1.7)
|
175
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
176
|
+
rubocop-rails (2.0.1)
|
177
|
+
rack (>= 1.1)
|
178
|
+
rubocop (>= 0.70.0)
|
179
|
+
ruby-progressbar (1.10.1)
|
180
|
+
ruby_dep (1.5.0)
|
181
|
+
rubyzip (1.3.0)
|
182
|
+
sass (3.7.4)
|
183
|
+
sass-listen (~> 4.0.0)
|
184
|
+
sass-listen (4.0.0)
|
185
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
186
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
187
|
+
sass-rails (5.1.0)
|
188
|
+
railties (>= 5.2.0)
|
189
|
+
sass (~> 3.1)
|
190
|
+
sprockets (>= 2.8, < 4.0)
|
191
|
+
sprockets-rails (>= 2.0, < 4.0)
|
192
|
+
tilt (>= 1.1, < 3)
|
193
|
+
selenium-webdriver (3.142.7)
|
194
|
+
childprocess (>= 0.5, < 4.0)
|
195
|
+
rubyzip (>= 1.2.2)
|
196
|
+
shoulda-context (2.0.0)
|
197
|
+
shoulda-matchers (4.3.0)
|
198
|
+
activesupport (>= 4.2.0)
|
199
|
+
snowglobe (0.3.0)
|
200
|
+
spring (2.1.0)
|
201
|
+
spring-commands-rspec (1.0.4)
|
202
|
+
spring (>= 0.9.1)
|
203
|
+
spring-watcher-listen (2.0.1)
|
204
|
+
listen (>= 2.7, < 4.0)
|
205
|
+
spring (>= 1.2, < 3.0)
|
206
|
+
sprockets (3.7.2)
|
207
|
+
concurrent-ruby (~> 1.0)
|
208
|
+
rack (> 1, < 3)
|
209
|
+
sprockets-rails (3.2.1)
|
210
|
+
actionpack (>= 4.0)
|
211
|
+
activesupport (>= 4.0)
|
212
|
+
sprockets (>= 3.0.0)
|
213
|
+
sqlite3 (1.3.13)
|
214
|
+
thor (1.0.1)
|
215
|
+
thread_safe (0.3.6)
|
216
|
+
tilt (2.0.10)
|
217
|
+
turbolinks (5.2.1)
|
218
|
+
turbolinks-source (~> 5.2)
|
219
|
+
turbolinks-source (5.2.0)
|
220
|
+
tzinfo (1.2.7)
|
221
|
+
thread_safe (~> 0.1)
|
222
|
+
unicode-display_width (1.6.1)
|
223
|
+
warnings_logger (0.1.0)
|
224
|
+
websocket-driver (0.7.1)
|
225
|
+
websocket-extensions (>= 0.1.0)
|
226
|
+
websocket-extensions (0.1.4)
|
227
|
+
xpath (3.2.0)
|
228
|
+
nokogiri (~> 1.8)
|
229
|
+
|
230
|
+
PLATFORMS
|
231
|
+
ruby
|
232
|
+
|
233
|
+
DEPENDENCIES
|
234
|
+
appraisal (~> 2.1)
|
235
|
+
bcrypt (~> 3.1.7)
|
236
|
+
bootsnap (>= 1.1.0)
|
237
|
+
bundler (~> 1.0)
|
238
|
+
capybara (~> 3.1.1)
|
239
|
+
chromedriver-helper
|
240
|
+
jbuilder (~> 2.5)
|
241
|
+
listen (>= 3.0.5, < 3.2)
|
242
|
+
m
|
243
|
+
minitest (~> 5.0)
|
244
|
+
minitest-reporters
|
245
|
+
mry
|
246
|
+
pry (~> 0.12.0)
|
247
|
+
pry-byebug (~> 3.6.0)
|
248
|
+
puma (~> 3.11)
|
249
|
+
rails (~> 5.2.2)
|
250
|
+
rails-controller-testing (>= 1.0.1)
|
251
|
+
rubocop (= 0.71.0)
|
252
|
+
rubocop-rails
|
253
|
+
rubyzip (~> 1.3.0)
|
254
|
+
sass-rails (~> 5.0)
|
255
|
+
selenium-webdriver
|
256
|
+
shoulda!
|
257
|
+
snowglobe (>= 0.3.0)
|
258
|
+
spring
|
259
|
+
spring-commands-rspec
|
260
|
+
spring-watcher-listen (~> 2.0.0)
|
261
|
+
sqlite3 (~> 1.3.6)
|
262
|
+
turbolinks (~> 5)
|
263
|
+
warnings_logger
|
264
|
+
|
265
|
+
BUNDLED WITH
|
266
|
+
1.17.3
|