shoulda-context 2.0.0 → 3.0.0.rc1

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.
data/MAINTAINING.md ADDED
@@ -0,0 +1,104 @@
1
+ # Maintaining Shoulda Context
2
+
3
+ Although Shoulda Context doesn't receive feature updates these days, you may
4
+ need to update the gem for new versions of Ruby or Rails. Here's what you need
5
+ to know in order to do that.
6
+
7
+ ## Getting started
8
+
9
+ First, run the setup script:
10
+
11
+ bin/setup
12
+
13
+ Then run all the tests to make sure everything is green:
14
+
15
+ bundle exec rake
16
+
17
+ ## Running tests
18
+
19
+ This project uses Minitest for tests and Appraisal to create environments
20
+ attuned for different versions of Rails. To run a single test in a single test
21
+ file, you will need to use a combination of Appraisal and the [`m`][m] gem. For
22
+ instance:
23
+
24
+ [m]: https://github.com/qrush/m
25
+
26
+ bundle exec appraisal rails_6_0 m test/shoulda/context_test.rb:39
27
+
28
+ ## Updating the changelog
29
+
30
+ After every user-facing change makes it into master, we make a note of it in the
31
+ changelog, kept in `CHANGELOG.md`. The changelog is sorted in reverse order by
32
+ release version, with the topmost version as the next release (tagged as
33
+ "(Unreleased)").
34
+
35
+ Within each version, there are five available categories you can divide changes
36
+ into. They are all optional but they should appear in this order:
37
+
38
+ 1. Backward-compatible changes
39
+ 1. Deprecations
40
+ 1. Bug fixes
41
+ 1. Features
42
+ 1. Improvements
43
+
44
+ Within each category section, the changes relevant to that category are listed
45
+ in chronological order.
46
+
47
+ For each change, provide a human-readable description of the change as well as a
48
+ linked reference to the PR where that change emerged (or the commit ID if no
49
+ such PR is available). This helps users cross-reference changes if they need to.
50
+
51
+ ## Versioning
52
+
53
+ ### Naming a new version
54
+
55
+ As designated in the README, we follow [SemVer 2.0][semver]. This offers a
56
+ meaningful baseline for deciding how to name versions. Generally speaking:
57
+
58
+ [semver]: https://semver.org/spec/v2.0.0.html
59
+
60
+ * We bump the "major" part of the version if we're introducing
61
+ backward-incompatible changes (e.g. changing the API or core behavior,
62
+ removing parts of the API, or dropping support for a version of Ruby).
63
+ * We bump the "minor" part if we're adding a new feature (e.g. adding a new
64
+ matcher or adding a new qualifier to a matcher).
65
+ * We bump the "patch" part if we're merely including bugfixes.
66
+
67
+ In addition to major, minor, and patch levels, you can also append a
68
+ suffix to the version for pre-release versions. We usually use this to issue
69
+ release candidates prior to an actual release. A version number in this case
70
+ might look like `4.0.0.rc1`.
71
+
72
+ ### Preparing and releasing a new version
73
+
74
+ In order to release any versions at all, you will need to have been added as
75
+ an owner of the Ruby gem. If you want to give someone else these permissions,
76
+ then run:
77
+
78
+ ```bash
79
+ gem owner shoulda-context -a <email address>
80
+ ```
81
+
82
+ Assuming you have permission to publish a new version to RubyGems, then this is
83
+ how you release a version:
84
+
85
+ 1. First, you'll want to [make sure that the changelog is up to
86
+ date](#updating-the-changelog).
87
+
88
+ 2. Next, you'll want to update the `VERSION` constant in
89
+ `lib/shoulda/context/version.rb`. This constant is referenced in the
90
+ gemspec and is used in the Rake tasks to publish the gem on RubyGems.
91
+
92
+ 3. Assuming that everything looks good, place your changes to the changelog,
93
+ `version.rb`, and README in their own commit titled "Bump version to
94
+ *X.Y.Z*". Push this to GitHub (you can use `[ci skip]`) in the body of the
95
+ commit message to skip CI for this commit if you so choose). **There is no
96
+ going back after this point!**
97
+
98
+ 6. Once GitHub has the version-change commit, you will run:
99
+
100
+ ```bash
101
+ rake release
102
+ ```
103
+
104
+ This will push the gem to RubyGems and make it available for download.
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Shoulda Context [![Gem Version][version-badge]][rubygems] [![Build Status][travis-badge]][travis] ![Downloads][downloads-badge] [![Hound][hound-badge]][hound]
2
2
 
3
3
  [version-badge]: https://img.shields.io/gem/v/shoulda-context.svg
4
- [rubygems]: https://rubygems.org/gems/shoulda-matchers
4
+ [rubygems]: https://rubygems.org/gems/shoulda-context
5
5
  [travis-badge]: https://img.shields.io/travis/thoughtbot/shoulda-context/master.svg
6
6
  [travis]: https://travis-ci.org/thoughtbot/shoulda-context
7
7
  [downloads-badge]: https://img.shields.io/gem/dtv/shoulda-context.svg
@@ -14,13 +14,34 @@ fully compatible with your existing tests and requires no retooling to use.
14
14
 
15
15
  ## Quick links
16
16
 
17
- 📖 **[Read the documentation for the latest version.][rubydocs]**
17
+ 📖 **[Read the documentation for the latest version.][rubydocs]**
18
18
  📢 **[See what's changed in recent versions.][changelog]**
19
19
 
20
20
  [rubydocs]: http://rubydoc.info/github/thoughtbot/shoulda-context/master/frames
21
21
  [changelog]: CHANGELOG.md
22
22
 
23
- ## Usage
23
+ [shoulda-context]: https://github.com/thoughtbot/shoulda-context
24
+
25
+ ## Getting started
26
+
27
+ If you're working on a Rails app, then make sure to add this gem to the `test`
28
+ group in your Gemfile:
29
+
30
+ ``` ruby
31
+ group :test do
32
+ gem 'shoulda-context', '~> 3.0.0.rc1'
33
+ end
34
+ ```
35
+
36
+ If you're not working on a Rails app, then you can simply add:
37
+
38
+ ``` ruby
39
+ gem 'shoulda-context', '~> 3.0.0.rc1'
40
+ ```
41
+
42
+ Then run `bundle install`.
43
+
44
+ ## Overview
24
45
 
25
46
  Instead of writing Ruby methods with `lots_of_underscores`, Shoulda Context lets
26
47
  you name your tests and group them together using English.
@@ -138,41 +159,54 @@ may be of use:
138
159
  * `assert_reject` — what `should_not` uses internally; asserts that a matcher
139
160
  object does not match against a value
140
161
 
141
- ## Note on running tests
162
+ ## Compatibility
142
163
 
143
- Normally, you will run a single test like this:
164
+ Shoulda Context is [tested][travis] and supported against Ruby 2.7+, Rails 6.0+,
165
+ Minitest 4.x, and Test::Unit 3.x.
144
166
 
145
- ruby -I lib -I test path_to_test.rb -n name_of_test_method
167
+ ## Versioning
146
168
 
147
- When using Shoulda Context, however, you'll need to put a space after the test
148
- name:
169
+ Shoulda Context follows Semantic Versioning 2.0 as defined at
170
+ <http://semver.org>.
149
171
 
150
- ruby -I lib -I test path_to_test.rb -n "test_: a calculator should add two numbers for the sum. "
172
+ ## Team
151
173
 
152
- If this is too cumbersome, consider using the [m] gem to run tests instead:
174
+ Shoulda Context is currently maintained by [Pedro Paiva][VSPPedro]. Previous
175
+ maintainers include [Elliot Winkler][mcmire], [Travis Jeffery][travisjeffery],
176
+ [Gabe Berke-Williams][gabebw], [Ryan McGeary][rmm5t], [Joe Ferris][jferris], [Dan
177
+ Croaky][croaky], and [Tammer Saleh][tammersaleh].
153
178
 
154
- m path_to_test.rb:39
179
+ [VSPPedro]: https://github.com/VSPPedro
180
+ [mcmire]: https://github.com/mcmire
181
+ [travisjeffery]: https://github.com/travisjeffery
182
+ [gabebw]: https://github.com/gabebw
183
+ [rmm5t]: https://github.com/rmm5t
184
+ [jferris]: https://github.com/jferris
185
+ [croaky]: https://github.com/croaky
186
+ [tammersaleh]: https://github.com/tammersaleh
155
187
 
156
- [m]: https://github.com/qrush/m
188
+ ## Copyright/License
157
189
 
158
- ## Compatibility
190
+ Shoulda Context is copyright © Tammer Saleh and [thoughtbot,
191
+ inc][thoughtbot-website]. It is free and opensource software and may be
192
+ redistributed under the terms specified in the [LICENSE](LICENSE) file.
193
+
194
+ [thoughtbot-website]: https://thoughtbot.com?utm_source=github
159
195
 
160
- Shoulda Context is tested and supported against Rails 4.x+, Minitest 4.x,
161
- Test::Unit 3.x, and Ruby 2.4+.
196
+ <!-- START /templates/footer.md -->
197
+ ## About thoughtbot
162
198
 
163
- ## Credits
199
+ ![thoughtbot](https://thoughtbot.com/thoughtbot-logo-for-readmes.svg)
164
200
 
165
- Shoulda Context is maintained by [Elliot Winkler][elliot-winkler], [Travis
166
- Jeffery][travis-jeffery], and thoughtbot. Thank you to all the [contributors].
201
+ This repo is maintained and funded by thoughtbot, inc.
202
+ The names and logos for thoughtbot are trademarks of thoughtbot, inc.
167
203
 
168
- [elliot-winkler]: https://github.com/mcmire
169
- [travis-jeffery]: https://github.com/travisjeffery
170
- [contributors]: https://github.com/thoughtbot/shoulda-context/contributors
204
+ We love open source software!
205
+ See [our other projects][community].
206
+ We are [available for hire][hire].
171
207
 
172
- ## License
208
+ [community]: https://thoughtbot.com/community?utm_source=github
209
+ [hire]: https://thoughtbot.com/hire-us?utm_source=github
173
210
 
174
- Shoulda Context is copyright © 2006-2020 [thoughtbot, inc][thoughtbot-website].
175
- It is free software, and may be redistributed under the terms specified in the
176
- [MIT-LICENSE](MIT-LICENSE) file.
177
211
 
178
- [thoughtbot-website]: https://thoughtbot.com
212
+ <!-- END /templates/footer.md -->
@@ -2,6 +2,6 @@
2
2
 
3
3
  require 'yaml'
4
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(' ')
5
+ ci_config_path = File.expand_path('../../.github//workflows/ci.yml', __FILE__)
6
+ ci_config = YAML.load_file(ci_config_path)
7
+ puts ci_config.dig('jobs', 'build', 'strategy', 'matrix', 'ruby').join(' ')
@@ -31,7 +31,7 @@ usage("Temp directory '#{TMP}' is not valid. Set TMPDIR environment variable to
31
31
 
32
32
  file = ARGV.shift
33
33
  tmpfile = File.join(TMP, File.basename(file))
34
- usage("File '#{file}' doesn't exist") unless File.exists?(file)
34
+ usage("File '#{file}' doesn't exist") unless File.exist?(file)
35
35
 
36
36
  FileUtils.cp(file, tmpfile)
37
37
  contents = File.read(tmpfile)
@@ -6,179 +6,199 @@ PATH
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- actioncable (6.0.2.2)
10
- actionpack (= 6.0.2.2)
9
+ actioncable (6.0.6.1)
10
+ actionpack (= 6.0.6.1)
11
11
  nio4r (~> 2.0)
12
12
  websocket-driver (>= 0.6.1)
13
- actionmailbox (6.0.2.2)
14
- actionpack (= 6.0.2.2)
15
- activejob (= 6.0.2.2)
16
- activerecord (= 6.0.2.2)
17
- activestorage (= 6.0.2.2)
18
- activesupport (= 6.0.2.2)
13
+ actionmailbox (6.0.6.1)
14
+ actionpack (= 6.0.6.1)
15
+ activejob (= 6.0.6.1)
16
+ activerecord (= 6.0.6.1)
17
+ activestorage (= 6.0.6.1)
18
+ activesupport (= 6.0.6.1)
19
19
  mail (>= 2.7.1)
20
- actionmailer (6.0.2.2)
21
- actionpack (= 6.0.2.2)
22
- actionview (= 6.0.2.2)
23
- activejob (= 6.0.2.2)
20
+ actionmailer (6.0.6.1)
21
+ actionpack (= 6.0.6.1)
22
+ actionview (= 6.0.6.1)
23
+ activejob (= 6.0.6.1)
24
24
  mail (~> 2.5, >= 2.5.4)
25
25
  rails-dom-testing (~> 2.0)
26
- actionpack (6.0.2.2)
27
- actionview (= 6.0.2.2)
28
- activesupport (= 6.0.2.2)
26
+ actionpack (6.0.6.1)
27
+ actionview (= 6.0.6.1)
28
+ activesupport (= 6.0.6.1)
29
29
  rack (~> 2.0, >= 2.0.8)
30
30
  rack-test (>= 0.6.3)
31
31
  rails-dom-testing (~> 2.0)
32
32
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
33
- actiontext (6.0.2.2)
34
- actionpack (= 6.0.2.2)
35
- activerecord (= 6.0.2.2)
36
- activestorage (= 6.0.2.2)
37
- activesupport (= 6.0.2.2)
33
+ actiontext (6.0.6.1)
34
+ actionpack (= 6.0.6.1)
35
+ activerecord (= 6.0.6.1)
36
+ activestorage (= 6.0.6.1)
37
+ activesupport (= 6.0.6.1)
38
38
  nokogiri (>= 1.8.5)
39
- actionview (6.0.2.2)
40
- activesupport (= 6.0.2.2)
39
+ actionview (6.0.6.1)
40
+ activesupport (= 6.0.6.1)
41
41
  builder (~> 3.1)
42
42
  erubi (~> 1.4)
43
43
  rails-dom-testing (~> 2.0)
44
44
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
45
- activejob (6.0.2.2)
46
- activesupport (= 6.0.2.2)
45
+ activejob (6.0.6.1)
46
+ activesupport (= 6.0.6.1)
47
47
  globalid (>= 0.3.6)
48
- activemodel (6.0.2.2)
49
- activesupport (= 6.0.2.2)
50
- activerecord (6.0.2.2)
51
- activemodel (= 6.0.2.2)
52
- activesupport (= 6.0.2.2)
53
- activestorage (6.0.2.2)
54
- actionpack (= 6.0.2.2)
55
- activejob (= 6.0.2.2)
56
- activerecord (= 6.0.2.2)
57
- marcel (~> 0.3.1)
58
- activesupport (6.0.2.2)
48
+ activemodel (6.0.6.1)
49
+ activesupport (= 6.0.6.1)
50
+ activerecord (6.0.6.1)
51
+ activemodel (= 6.0.6.1)
52
+ activesupport (= 6.0.6.1)
53
+ activestorage (6.0.6.1)
54
+ actionpack (= 6.0.6.1)
55
+ activejob (= 6.0.6.1)
56
+ activerecord (= 6.0.6.1)
57
+ marcel (~> 1.0)
58
+ activesupport (6.0.6.1)
59
59
  concurrent-ruby (~> 1.0, >= 1.0.2)
60
60
  i18n (>= 0.7, < 2)
61
61
  minitest (~> 5.1)
62
62
  tzinfo (~> 1.1)
63
- zeitwerk (~> 2.2)
64
- addressable (2.7.0)
65
- public_suffix (>= 2.0.2, < 5.0)
63
+ zeitwerk (~> 2.2, >= 2.2.2)
64
+ addressable (2.8.1)
65
+ public_suffix (>= 2.0.2, < 6.0)
66
66
  ansi (1.5.0)
67
- appraisal (2.2.0)
67
+ appraisal (2.4.1)
68
68
  bundler
69
69
  rake
70
70
  thor (>= 0.14.0)
71
- ast (2.4.0)
72
- bcrypt (3.1.13)
73
- bootsnap (1.4.6)
74
- msgpack (~> 1.0)
71
+ ast (2.4.2)
72
+ bcrypt (3.1.18)
73
+ bootsnap (1.13.0)
74
+ msgpack (~> 1.2)
75
75
  builder (3.2.4)
76
76
  byebug (10.0.2)
77
- capybara (3.32.0)
77
+ capybara (3.35.3)
78
78
  addressable
79
79
  mini_mime (>= 0.1.3)
80
80
  nokogiri (~> 1.8)
81
81
  rack (>= 1.6.0)
82
82
  rack-test (>= 0.6.3)
83
- regexp_parser (~> 1.5)
83
+ regexp_parser (>= 1.5, < 3.0)
84
84
  xpath (~> 3.2)
85
85
  childprocess (3.0.0)
86
- coderay (1.1.2)
87
- concurrent-ruby (1.1.6)
86
+ coderay (1.1.3)
87
+ concurrent-ruby (1.2.2)
88
88
  crass (1.0.6)
89
- erubi (1.9.0)
90
- ffi (1.12.2)
91
- globalid (0.4.2)
92
- activesupport (>= 4.2.0)
93
- i18n (1.8.2)
89
+ digest (3.1.1)
90
+ erubi (1.12.0)
91
+ ffi (1.15.5)
92
+ globalid (1.1.0)
93
+ activesupport (>= 5.0)
94
+ i18n (1.12.0)
94
95
  concurrent-ruby (~> 1.0)
96
+ io-wait (0.3.0)
95
97
  jaro_winkler (1.5.4)
96
- jbuilder (2.10.0)
98
+ jbuilder (2.11.5)
99
+ actionview (>= 5.0.0)
97
100
  activesupport (>= 5.0.0)
98
101
  listen (3.1.5)
99
102
  rb-fsevent (~> 0.9, >= 0.9.4)
100
103
  rb-inotify (~> 0.9, >= 0.9.7)
101
104
  ruby_dep (~> 1.2)
102
- loofah (2.4.0)
105
+ loofah (2.19.1)
103
106
  crass (~> 1.0.2)
104
107
  nokogiri (>= 1.5.9)
105
- m (1.5.1)
108
+ m (1.6.1)
106
109
  method_source (>= 0.6.7)
107
110
  rake (>= 0.9.2.2)
108
- mail (2.7.1)
111
+ mail (2.8.1)
109
112
  mini_mime (>= 0.1.1)
110
- marcel (0.3.3)
111
- mimemagic (~> 0.3.2)
113
+ net-imap
114
+ net-pop
115
+ net-smtp
116
+ marcel (1.0.2)
112
117
  method_source (0.9.2)
113
- mimemagic (0.3.4)
114
- mini_mime (1.0.2)
115
- mini_portile2 (2.4.0)
116
- minitest (5.14.0)
117
- minitest-reporters (1.4.2)
118
+ mini_mime (1.1.2)
119
+ mini_portile2 (2.6.1)
120
+ minitest (5.15.0)
121
+ minitest-reporters (1.6.0)
118
122
  ansi
119
123
  builder
120
124
  minitest (>= 5.0)
121
125
  ruby-progressbar
122
- mocha (1.11.2)
123
- msgpack (1.3.3)
124
- nio4r (2.5.2)
125
- nokogiri (1.10.9)
126
- mini_portile2 (~> 2.4.0)
127
- parallel (1.19.1)
128
- parser (2.7.1.0)
129
- ast (~> 2.4.0)
130
- pg (1.2.3)
131
- power_assert (1.1.7)
126
+ mocha (2.0.2)
127
+ ruby2_keywords (>= 0.0.5)
128
+ msgpack (1.6.0)
129
+ net-imap (0.2.2)
130
+ digest
131
+ net-protocol
132
+ strscan
133
+ net-pop (0.1.2)
134
+ net-protocol
135
+ net-protocol (0.1.2)
136
+ io-wait
137
+ timeout
138
+ net-smtp (0.3.0)
139
+ digest
140
+ net-protocol
141
+ timeout
142
+ nio4r (2.5.8)
143
+ nokogiri (1.12.5)
144
+ mini_portile2 (~> 2.6.1)
145
+ racc (~> 1.4)
146
+ parallel (1.22.1)
147
+ parser (3.2.1.0)
148
+ ast (~> 2.4.1)
149
+ pg (1.4.6)
150
+ power_assert (2.0.3)
132
151
  pry (0.12.2)
133
152
  coderay (~> 1.1.0)
134
153
  method_source (~> 0.9.0)
135
154
  pry-byebug (3.6.0)
136
155
  byebug (~> 10.0)
137
156
  pry (~> 0.10)
138
- public_suffix (4.0.3)
139
- puma (4.3.3)
157
+ public_suffix (4.0.7)
158
+ puma (4.3.12)
140
159
  nio4r (~> 2.0)
141
- rack (2.2.2)
142
- rack-proxy (0.6.5)
160
+ racc (1.6.2)
161
+ rack (2.2.6.2)
162
+ rack-proxy (0.7.6)
143
163
  rack
144
- rack-test (1.1.0)
145
- rack (>= 1.0, < 3)
146
- rails (6.0.2.2)
147
- actioncable (= 6.0.2.2)
148
- actionmailbox (= 6.0.2.2)
149
- actionmailer (= 6.0.2.2)
150
- actionpack (= 6.0.2.2)
151
- actiontext (= 6.0.2.2)
152
- actionview (= 6.0.2.2)
153
- activejob (= 6.0.2.2)
154
- activemodel (= 6.0.2.2)
155
- activerecord (= 6.0.2.2)
156
- activestorage (= 6.0.2.2)
157
- activesupport (= 6.0.2.2)
164
+ rack-test (2.0.2)
165
+ rack (>= 1.3)
166
+ rails (6.0.6.1)
167
+ actioncable (= 6.0.6.1)
168
+ actionmailbox (= 6.0.6.1)
169
+ actionmailer (= 6.0.6.1)
170
+ actionpack (= 6.0.6.1)
171
+ actiontext (= 6.0.6.1)
172
+ actionview (= 6.0.6.1)
173
+ activejob (= 6.0.6.1)
174
+ activemodel (= 6.0.6.1)
175
+ activerecord (= 6.0.6.1)
176
+ activestorage (= 6.0.6.1)
177
+ activesupport (= 6.0.6.1)
158
178
  bundler (>= 1.3.0)
159
- railties (= 6.0.2.2)
179
+ railties (= 6.0.6.1)
160
180
  sprockets-rails (>= 2.0.0)
161
- rails-controller-testing (1.0.4)
162
- actionpack (>= 5.0.1.x)
163
- actionview (>= 5.0.1.x)
164
- activesupport (>= 5.0.1.x)
181
+ rails-controller-testing (1.0.5)
182
+ actionpack (>= 5.0.1.rc1)
183
+ actionview (>= 5.0.1.rc1)
184
+ activesupport (>= 5.0.1.rc1)
165
185
  rails-dom-testing (2.0.3)
166
186
  activesupport (>= 4.2.0)
167
187
  nokogiri (>= 1.6)
168
- rails-html-sanitizer (1.3.0)
169
- loofah (~> 2.3)
170
- railties (6.0.2.2)
171
- actionpack (= 6.0.2.2)
172
- activesupport (= 6.0.2.2)
188
+ rails-html-sanitizer (1.5.0)
189
+ loofah (~> 2.19, >= 2.19.1)
190
+ railties (6.0.6.1)
191
+ actionpack (= 6.0.6.1)
192
+ activesupport (= 6.0.6.1)
173
193
  method_source
174
194
  rake (>= 0.8.7)
175
195
  thor (>= 0.20.3, < 2.0)
176
- rainbow (3.0.0)
177
- rake (13.0.1)
178
- rb-fsevent (0.10.3)
196
+ rainbow (3.1.1)
197
+ rake (13.0.6)
198
+ rb-fsevent (0.11.2)
179
199
  rb-inotify (0.10.1)
180
200
  ffi (~> 1.0)
181
- regexp_parser (1.7.0)
201
+ regexp_parser (2.7.0)
182
202
  rubocop (0.71.0)
183
203
  jaro_winkler (~> 1.5.1)
184
204
  parallel (~> 1.10)
@@ -186,12 +206,13 @@ GEM
186
206
  rainbow (>= 2.2.2, < 4.0)
187
207
  ruby-progressbar (~> 1.7)
188
208
  unicode-display_width (>= 1.4.0, < 1.7)
189
- ruby-progressbar (1.10.1)
209
+ ruby-progressbar (1.12.0)
210
+ ruby2_keywords (0.0.5)
190
211
  ruby_dep (1.5.0)
191
- rubyzip (2.3.0)
212
+ rubyzip (2.3.2)
192
213
  sass-rails (6.0.0)
193
214
  sassc-rails (~> 2.1, >= 2.1.1)
194
- sassc (2.2.1)
215
+ sassc (2.4.0)
195
216
  ffi (~> 1.9)
196
217
  sassc-rails (2.1.2)
197
218
  railties (>= 4.0.0)
@@ -203,46 +224,48 @@ GEM
203
224
  childprocess (>= 0.5, < 4.0)
204
225
  rubyzip (>= 1.2.2)
205
226
  snowglobe (0.3.0)
206
- spring (2.1.0)
227
+ spring (2.1.1)
207
228
  spring-commands-rspec (1.0.4)
208
229
  spring (>= 0.9.1)
209
230
  spring-watcher-listen (2.0.1)
210
231
  listen (>= 2.7, < 4.0)
211
232
  spring (>= 1.2, < 3.0)
212
- sprockets (4.0.0)
233
+ sprockets (4.2.0)
213
234
  concurrent-ruby (~> 1.0)
214
- rack (> 1, < 3)
215
- sprockets-rails (3.2.1)
216
- actionpack (>= 4.0)
217
- activesupport (>= 4.0)
235
+ rack (>= 2.2.4, < 4)
236
+ sprockets-rails (3.4.2)
237
+ actionpack (>= 5.2)
238
+ activesupport (>= 5.2)
218
239
  sprockets (>= 3.0.0)
219
- sqlite3 (1.4.2)
220
- test-unit (3.3.5)
240
+ sqlite3 (1.4.4)
241
+ strscan (3.0.6)
242
+ test-unit (3.5.7)
221
243
  power_assert
222
- thor (1.0.1)
244
+ thor (1.2.1)
223
245
  thread_safe (0.3.6)
224
- tilt (2.0.10)
246
+ tilt (2.1.0)
247
+ timeout (0.3.2)
225
248
  turbolinks (5.2.1)
226
249
  turbolinks-source (~> 5.2)
227
250
  turbolinks-source (5.2.0)
228
- tzinfo (1.2.7)
251
+ tzinfo (1.2.11)
229
252
  thread_safe (~> 0.1)
230
253
  unicode-display_width (1.6.1)
231
- warnings_logger (0.1.0)
232
- webdrivers (4.2.0)
254
+ warnings_logger (0.1.1)
255
+ webdrivers (4.6.1)
233
256
  nokogiri (~> 1.6)
234
257
  rubyzip (>= 1.3.0)
235
258
  selenium-webdriver (>= 3.0, < 4.0)
236
- webpacker (4.2.2)
259
+ webpacker (4.3.0)
237
260
  activesupport (>= 4.2)
238
261
  rack-proxy (>= 0.6.1)
239
262
  railties (>= 4.2)
240
- websocket-driver (0.7.1)
263
+ websocket-driver (0.7.5)
241
264
  websocket-extensions (>= 0.1.0)
242
- websocket-extensions (0.1.4)
265
+ websocket-extensions (0.1.5)
243
266
  xpath (3.2.0)
244
267
  nokogiri (~> 1.8)
245
- zeitwerk (2.3.0)
268
+ zeitwerk (2.6.7)
246
269
 
247
270
  PLATFORMS
248
271
  ruby