shoulda 4.0.0 → 5.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/{MIT-LICENSE → LICENSE} +1 -1
  3. data/README.md +32 -31
  4. data/lib/shoulda/version.rb +1 -1
  5. data/shoulda.gemspec +17 -14
  6. metadata +17 -62
  7. data/.autotest +0 -13
  8. data/.gitignore +0 -13
  9. data/.hound.yml +0 -3
  10. data/.rubocop.yml +0 -192
  11. data/.ruby-version +0 -1
  12. data/.travis.yml +0 -34
  13. data/Appraisals +0 -116
  14. data/CHANGELOG.md +0 -10
  15. data/CONTRIBUTING.md +0 -43
  16. data/Gemfile +0 -16
  17. data/Rakefile +0 -31
  18. data/gemfiles/rails_4_2.gemfile +0 -34
  19. data/gemfiles/rails_4_2.gemfile.lock +0 -240
  20. data/gemfiles/rails_5_0.gemfile +0 -32
  21. data/gemfiles/rails_5_0.gemfile.lock +0 -232
  22. data/gemfiles/rails_5_1.gemfile +0 -33
  23. data/gemfiles/rails_5_1.gemfile.lock +0 -247
  24. data/gemfiles/rails_5_2.gemfile +0 -35
  25. data/gemfiles/rails_5_2.gemfile.lock +0 -266
  26. data/gemfiles/rails_6_0.gemfile +0 -37
  27. data/gemfiles/rails_6_0.gemfile.lock +0 -291
  28. data/script/install_gems_in_all_appraisals +0 -16
  29. data/script/run_all_tests +0 -16
  30. data/script/supported_ruby_versions +0 -7
  31. data/script/update_gem_in_all_appraisals +0 -17
  32. data/script/update_gems_in_all_appraisals +0 -16
  33. data/test/acceptance/integrates_with_rails_test.rb +0 -580
  34. data/test/acceptance_test_helper.rb +0 -43
  35. data/test/support/acceptance/add_shoulda_to_project.rb +0 -73
  36. data/test/support/acceptance/helpers/array_helpers.rb +0 -13
  37. data/test/support/acceptance/helpers/pluralization_helpers.rb +0 -13
  38. data/test/support/acceptance/matchers/have_output.rb +0 -33
  39. data/test/support/acceptance/matchers/indicate_that_tests_were_run.rb +0 -109
  40. data/test/support/acceptance/rails_application_with_shoulda.rb +0 -47
  41. data/test/support/current_bundle.rb +0 -61
  42. data/test/support/snowglobe.rb +0 -5
  43. data/test/test_helper.rb +0 -23
data/CHANGELOG.md DELETED
@@ -1,10 +0,0 @@
1
- # Changelog
2
-
3
- ## 4.0.0 (2020-06-13)
4
-
5
- * `shoulda` now brings in `shoulda-context` 2.0.0, which adds compatibility for
6
- Ruby 2.7, Rails 6.0, and shoulda-matchers 4.0! Note that there are some
7
- backward incompatible changes, so please see the [changelog
8
- entry][shoulda-context-2-0-0] for this release to learn more.
9
-
10
- [shoulda-context-2-0-0]: https://github.com/thoughtbot/shoulda-context/blob/master/CHANGELOG.md#200-2020-06-13
data/CONTRIBUTING.md DELETED
@@ -1,43 +0,0 @@
1
- We love pull requests from everyone. By participating in this project, you
2
- agree to abide by the thoughtbot [code of conduct].
3
-
4
- [code of conduct]: https://thoughtbot.com/open-source-code-of-conduct
5
-
6
- Here's a quick guide:
7
-
8
- 1. Fork the repo.
9
-
10
- 2. Run the tests. We only take pull requests with passing tests, and it's great
11
- to know that you have a clean slate: `bundle && rake`
12
-
13
- 3. Add a test for your change. Only refactoring and documentation changes
14
- require no new tests. If you are adding functionality or fixing a bug, we need
15
- a test!
16
-
17
- 4. Make the test pass.
18
-
19
- 5. Push to your fork and submit a pull request.
20
-
21
-
22
- At this point you're waiting on us. We like to at least comment on, if not
23
- accept, pull requests within three business days (and, typically, one business
24
- day). We may suggest some changes or improvements or alternatives.
25
-
26
- Some things that will increase the chance that your pull request is accepted,
27
- taken straight from the Ruby on Rails guide:
28
-
29
- * Use Rails idioms and helpers
30
- * Include tests that fail without your code, and pass with it
31
- * Update the documentation, the surrounding one, examples elsewhere, guides,
32
- whatever is affected by your contribution
33
-
34
- Syntax:
35
-
36
- * Two spaces, no tabs.
37
- * No trailing whitespace. Blank lines should not have any space.
38
- * Prefer &&/|| over and/or.
39
- * MyClass.my_method(my_arg) not my_method( my_arg ) or my_method my_arg.
40
- * a = b and not a=b.
41
- * Follow the conventions you see used in the source already.
42
-
43
- And in case we didn't emphasize it enough: we love tests!
data/Gemfile DELETED
@@ -1,16 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
4
-
5
- gem 'appraisal', '~> 2.1'
6
- gem 'bundler', '~> 1.0'
7
- gem 'm'
8
- gem 'minitest', '~> 5.0'
9
- gem 'minitest-reporters', '~> 1.0'
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'
data/Rakefile DELETED
@@ -1,31 +0,0 @@
1
- require 'bundler/setup'
2
- require 'bundler/gem_tasks'
3
- require 'rake/testtask'
4
- require 'pry-byebug'
5
-
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
13
- end
14
-
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
24
- end
25
-
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
@@ -1,34 +0,0 @@
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: "../"
@@ -1,240 +0,0 @@
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
@@ -1,32 +0,0 @@
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: "../"
@@ -1,232 +0,0 @@
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
@@ -1,33 +0,0 @@
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: "../"