minitest-spec-rails 5.4.0 → 6.0.3
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.
- checksums.yaml +5 -5
- data/.github/workflows/ci.yml +35 -0
- data/.rubocop.yml +26 -0
- data/Appraisals +10 -6
- data/CHANGELOG.md +25 -1
- data/Gemfile +0 -1
- data/README.md +23 -35
- data/Rakefile +6 -6
- data/gemfiles/{rails42.gemfile → rails_v5.1.x.gemfile} +3 -2
- data/gemfiles/rails_v5.1.x.gemfile.lock +128 -0
- data/gemfiles/{rails50.gemfile → rails_v5.2.x.gemfile} +3 -2
- data/gemfiles/rails_v5.2.x.gemfile.lock +136 -0
- data/gemfiles/{rails41.gemfile → rails_v6.0.x.gemfile} +3 -2
- data/gemfiles/rails_v6.0.x.gemfile.lock +152 -0
- data/lib/minitest-spec-rails/dsl.rb +5 -9
- data/lib/minitest-spec-rails/init/action_controller.rb +3 -7
- data/lib/minitest-spec-rails/init/action_dispatch.rb +1 -3
- data/lib/minitest-spec-rails/init/action_mailer.rb +2 -7
- data/lib/minitest-spec-rails/init/action_view.rb +1 -5
- data/lib/minitest-spec-rails/init/active_job.rb +3 -8
- data/lib/minitest-spec-rails/init/active_support.rb +8 -10
- data/lib/minitest-spec-rails/init/mini_shoulda.rb +2 -6
- data/lib/minitest-spec-rails/parallelize.rb +30 -0
- data/lib/minitest-spec-rails/railtie.rb +24 -21
- data/lib/minitest-spec-rails/version.rb +1 -1
- data/minitest-spec-rails.gemspec +7 -7
- data/test/cases/action_controller_test.rb +7 -10
- data/test/cases/action_dispatch_test.rb +10 -13
- data/test/cases/action_mailer_test.rb +7 -10
- data/test/cases/action_view_test.rb +13 -16
- data/test/cases/active_job_test.rb +38 -36
- data/test/cases/active_support_test.rb +22 -12
- data/test/cases/mini_shoulda_test.rb +0 -4
- data/test/dummy_app/app/assets/config/manifest.js +1 -0
- data/test/dummy_app/app/controllers/application_controller.rb +1 -3
- data/test/dummy_app/app/controllers/users_controller.rb +1 -3
- data/test/dummy_app/app/helpers/application_helper.rb +0 -1
- data/test/dummy_app/app/helpers/foos_helper.rb +3 -1
- data/test/dummy_app/app/helpers/users_helper.rb +1 -3
- data/test/dummy_app/app/mailers/user_mailer.rb +2 -4
- data/test/dummy_app/app/models/post.rb +0 -3
- data/test/dummy_app/app/models/user.rb +0 -3
- data/test/dummy_app/config/routes.rb +1 -1
- data/test/dummy_app/init.rb +13 -6
- data/test/dummy_tests/application_controller_test.rb +3 -9
- data/test/dummy_tests/foos_helper_test.rb +0 -3
- data/test/dummy_tests/integration_test.rb +2 -8
- data/test/dummy_tests/special_users_controller_test.rb +0 -2
- data/test/dummy_tests/user_mailer_test.rb +4 -10
- data/test/dummy_tests/user_test.rb +2 -8
- data/test/dummy_tests/users_controller_test.rb +1 -3
- data/test/dummy_tests/users_helper_test.rb +2 -8
- data/test/support/shared_test_case_behavior.rb +4 -7
- data/test/test_helper.rb +0 -3
- data/test/test_helper_dummy.rb +5 -6
- metadata +20 -16
- data/.travis.yml +0 -22
- data/gemfiles/rails41.gemfile.lock +0 -96
- data/gemfiles/rails42.gemfile.lock +0 -123
- data/gemfiles/rails50.gemfile.lock +0 -133
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: aa9f5efa42df7a6ad9c3615adc5569edfd4dedf960fd39533df197fa880ff672
|
4
|
+
data.tar.gz: 66bb017c19b46242947037da6e0be5b8916dcb4cfbdfe8769470314a852c28e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2d77a369ba31f3d55694e590d0d3a5de5df50f93473cfce88f09ae283b591ea495bfb68770baca1b446b59c35ac29ec71f49dcd664e931d8dbbca36af0cda06
|
7
|
+
data.tar.gz: 1b52ac1fd51187563f32369cc3131a2203812d04ffc440a50aecd1ef0ca4226aee65bf5abf09d8b8f432a831860ae7d4dc79b17459813b38dabdc42359a0a96d
|
@@ -0,0 +1,35 @@
|
|
1
|
+
name: CI
|
2
|
+
on: [push]
|
3
|
+
jobs:
|
4
|
+
test:
|
5
|
+
runs-on: ubuntu-latest
|
6
|
+
strategy:
|
7
|
+
matrix:
|
8
|
+
ruby:
|
9
|
+
- '2.5.x'
|
10
|
+
- '2.6.x'
|
11
|
+
rails:
|
12
|
+
- 'rails_v5.1.x'
|
13
|
+
- 'rails_v5.2.x'
|
14
|
+
- 'rails_v6.0.x'
|
15
|
+
steps:
|
16
|
+
- name: Checkout
|
17
|
+
uses: actions/checkout@v1
|
18
|
+
- name: Setup System
|
19
|
+
run: |
|
20
|
+
sudo apt-get install libsqlite3-dev
|
21
|
+
echo "::set-env name=MTSR_RAILS_VERSION::${{ matrix.rails }}"
|
22
|
+
- name: Setup Ruby
|
23
|
+
uses: actions/setup-ruby@v1
|
24
|
+
with:
|
25
|
+
ruby-version: ${{ matrix.ruby }}
|
26
|
+
- name: Bundle
|
27
|
+
run: |
|
28
|
+
export BUNDLE_GEMFILE="${GITHUB_WORKSPACE}/gemfiles/${MTSR_RAILS_VERSION}.gemfile"
|
29
|
+
gem uninstall -aIx bundler
|
30
|
+
gem install bundler -v 1.17.3
|
31
|
+
bundle install --jobs 4 --retry 3
|
32
|
+
- name: Test
|
33
|
+
run: |
|
34
|
+
export BUNDLE_GEMFILE="${GITHUB_WORKSPACE}/gemfiles/${MTSR_RAILS_VERSION}.gemfile"
|
35
|
+
bundle exec rake
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
|
2
|
+
Metrics/LineLength:
|
3
|
+
Max: 120
|
4
|
+
|
5
|
+
Metrics/MethodLength:
|
6
|
+
Max: 15
|
7
|
+
|
8
|
+
Metrics/BlockLength:
|
9
|
+
Exclude:
|
10
|
+
- 'test/dummy_tests/user_mailer_test.rb'
|
11
|
+
|
12
|
+
Style/Documentation:
|
13
|
+
Enabled: false
|
14
|
+
|
15
|
+
Style/GlobalVars:
|
16
|
+
AllowedVariables:
|
17
|
+
- '$teardown_ran'
|
18
|
+
|
19
|
+
Style/FileName:
|
20
|
+
Exclude:
|
21
|
+
- 'lib/minitest-spec-rails.rb'
|
22
|
+
- 'Appraisals'
|
23
|
+
|
24
|
+
AllCops:
|
25
|
+
Exclude:
|
26
|
+
- 'gemfiles/*'
|
data/Appraisals
CHANGED
@@ -1,12 +1,16 @@
|
|
1
1
|
|
2
|
-
appraise '
|
3
|
-
gem 'rails', '~>
|
2
|
+
appraise 'rails-v5.1.x' do
|
3
|
+
gem 'rails', '~> 5.1.0'
|
4
|
+
# https://github.com/rails/rails/issues/29031
|
5
|
+
gem 'minitest', '5.10.1'
|
4
6
|
end
|
5
7
|
|
6
|
-
appraise '
|
7
|
-
gem 'rails', '~>
|
8
|
+
appraise 'rails-v5.2.x' do
|
9
|
+
gem 'rails', '~> 5.2.0'
|
10
|
+
gem 'minitest'
|
8
11
|
end
|
9
12
|
|
10
|
-
appraise '
|
11
|
-
gem 'rails', '
|
13
|
+
appraise 'rails_v6.0.x' do
|
14
|
+
gem 'rails', '~> 6.0.0'
|
15
|
+
gem 'minitest'
|
12
16
|
end
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,28 @@
|
|
1
|
-
##
|
1
|
+
## 6.0.3
|
2
|
+
|
3
|
+
* Better ActionView load. Fixed #105. Thanks @zofrex
|
4
|
+
|
5
|
+
## 6.0.2
|
6
|
+
|
7
|
+
* Fixed parallel tests in Rails v6.
|
8
|
+
|
9
|
+
## 6.0.1
|
10
|
+
|
11
|
+
* Changed gemspec to `railties` vs `rails`. Thanks @seuros
|
12
|
+
|
13
|
+
## 6.0.0
|
14
|
+
|
15
|
+
* Bumping to be major with latest testing versions.
|
16
|
+
|
17
|
+
## 5.6.0
|
18
|
+
|
19
|
+
* Add Rails v6 via gem spec support.
|
20
|
+
|
21
|
+
## 5.5.0
|
22
|
+
|
23
|
+
* Fix source_location of methods defined with `test`. Fixes #91. Thanks @barrettkingram
|
24
|
+
|
25
|
+
## 5.4.0
|
2
26
|
|
3
27
|
* Use ENV['RAILS_ENV'] for initializer guards vs memo'ed Rails.env. Fixes #72.
|
4
28
|
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
<img src="
|
1
|
+
<a href="https://dhh.dk/2012/rails-is-omakase.html"><img src="https://user-images.githubusercontent.com/2381/34084174-246174da-e34a-11e7-9d36-94c9cde7b63d.png" width="233" height="154" /></a>
|
2
2
|
|
3
3
|
# Make Rails Use MiniTest::Spec!
|
4
|
-
|
4
|
+
##### https://dhh.dk/2012/rails-is-omakase.html
|
5
5
|
|
6
6
|
The minitest-spec-rails gem makes it easy to use the MiniTest::Spec DSL within your existing Rails 2.3, 3.x or 4.x test suite. It does this by forcing ActiveSupport::TestCase to utilize the MiniTest::Spec::DSL.
|
7
7
|
|
8
|
-
[](http://badge.fury.io/rb/minitest-spec-rails)
|
9
|
+
[](https://launch-editor.github.com/actions?nwo=metaskills%2Fminitest-spec-rails&workflowID=CI)
|
10
|
+
[](https://codeclimate.com/github/metaskills/minitest-spec-rails/maintainability)
|
11
11
|
|
12
12
|
|
13
13
|
## Usage
|
@@ -15,9 +15,9 @@ The minitest-spec-rails gem makes it easy to use the MiniTest::Spec DSL within y
|
|
15
15
|
Existing or new Rails applications that use the default Rails testing structure can simply drop in the minitest-spec-gem and start writing their tests in the new spec DSL. Since MiniTest::Spec is built on top of MiniTest::Unit, a replacement for Test::Unit, all of your existing tests will continue to work.
|
16
16
|
|
17
17
|
|
18
|
-
#### Rails 4.1
|
18
|
+
#### Rails 4.1 to 6.0
|
19
19
|
|
20
|
-
Our master branch is tracking rails
|
20
|
+
Our master branch is tracking rails 5.1 up to 6.x active development.
|
21
21
|
|
22
22
|
```ruby
|
23
23
|
group :test do
|
@@ -35,26 +35,6 @@ group :test do
|
|
35
35
|
end
|
36
36
|
```
|
37
37
|
|
38
|
-
#### For Rails 2.3
|
39
|
-
|
40
|
-
Our [2-3-stable](https://github.com/metaskills/minitest-spec-rails/tree/2-3-stable) branch tracks our 3.1 version number and is guaranteed to work on any Rails 2.3 version. Since Rails 2.3 does not have a configurable Railtie, we have enabled the [mini-shoulda](#mini_shoulda) option all the time. This means that if you are on Rails 2.3 under either Ruby 1.8 or 1.9, perhaps using Shoulda, you have a solid upgrade path! Get your tests running with minitest-spec-rails first and nothing in you test stack changes along the way!
|
41
|
-
|
42
|
-
```ruby
|
43
|
-
group :test do
|
44
|
-
gem 'minitest-spec-rails', '~> 3.1'
|
45
|
-
end
|
46
|
-
```
|
47
|
-
|
48
|
-
#### Ruby 1.8 Users!!!
|
49
|
-
|
50
|
-
If you are using Ruby 1.8, you must install a Test::Unit shim that subclasses MiniTest::Unit, just as Ruby 1.9 does. We have kindly packed up Ruby 1.9's `lib/test` directory in the [minitest-spec-rails-tu-shim](https://github.com/metaskills/minitest-spec-rails-tu-shim) gem. So just add this to your Gemfile.
|
51
|
-
|
52
|
-
```ruby
|
53
|
-
group :test do
|
54
|
-
gem 'minitest-spec-rails-tu-shim'
|
55
|
-
end
|
56
|
-
```
|
57
|
-
|
58
38
|
|
59
39
|
### How is this different than MiniTest::Rails?
|
60
40
|
|
@@ -108,7 +88,7 @@ RSpec 3 is also moving away from the outer describe test type inference, as desc
|
|
108
88
|
|
109
89
|
> Spec types are no longer inferred by location, they instead need to be explicitly tagged. The old behaviour is enabled by config.infer_spec_type_from_file_location!, which is still supplied in the default generated spec_helper.rb. (Xavier Shay, Myron Marston)
|
110
90
|
|
111
|
-
Not that we want to mimic RSpec, but the aim of this gem is very straight forward and
|
91
|
+
Not that we want to mimic RSpec, but the aim of this gem is very straight forward and minimalistic. We simply want to expose the Minitest Spec::DSL and core assertion style within ActiveSupport. Period. So it is very possible that us matching outer describe to classes is simply going to go away one day soon.
|
112
92
|
|
113
93
|
Just for reference, here is a full list of each of Rails test case we support.
|
114
94
|
|
@@ -233,6 +213,17 @@ describe Post do
|
|
233
213
|
end
|
234
214
|
```
|
235
215
|
|
216
|
+
Alternatively, try the [mintest-matchers_vaccine](https://github.com/rmm5t/minitest-matchers_vaccine) gem to avoid _infecting_ the objects that you want to test.
|
217
|
+
|
218
|
+
```ruby
|
219
|
+
describe User do
|
220
|
+
subject { User.new }
|
221
|
+
it "should validate email" do
|
222
|
+
must have_valid(:email).when("a@a.com", "foo@bar.com")
|
223
|
+
wont have_valid(:email).when(nil, "", "foo", "foo@bar")
|
224
|
+
end
|
225
|
+
end
|
226
|
+
```
|
236
227
|
|
237
228
|
## Gotchas
|
238
229
|
|
@@ -272,7 +263,7 @@ If your view helper tests give you an eror like this: `RuntimeError: In order to
|
|
272
263
|
|
273
264
|
## Contributing
|
274
265
|
|
275
|
-
We run our tests on
|
266
|
+
We run our tests on GitHub Actions. If you detect a problem, open up a github issue or fork the repo and help out. After you fork or clone the repository, the following commands will get you up and running on the test suite.
|
276
267
|
|
277
268
|
```shell
|
278
269
|
$ bundle install
|
@@ -283,7 +274,9 @@ $ bundle exec appraisal rake test
|
|
283
274
|
We use the [appraisal](https://github.com/thoughtbot/appraisal) gem from Thoughtbot to help us generate the individual gemfiles for each Rails version and to run the tests locally against each generated Gemfile. The `rake appraisal test` command actually runs our test suite against all Rails versions in our `Appraisal` file. If you want to run the tests for a specific Rails version, use `bundle exec appraisal -h` for a list. For example, the following command will run the tests for Rails 4.1 only.
|
284
275
|
|
285
276
|
```shell
|
286
|
-
$ bundle exec appraisal
|
277
|
+
$ bundle exec appraisal rails-v5.1.x rake test
|
278
|
+
$ bundle exec appraisal rails-v5.2.x rake test
|
279
|
+
$ bundle exec appraisal rails-v6.0.x rake test
|
287
280
|
```
|
288
281
|
|
289
282
|
We have a few branches for each major Rails version.
|
@@ -291,8 +284,3 @@ We have a few branches for each major Rails version.
|
|
291
284
|
* [2-3-stable](https://github.com/metaskills/minitest-spec-rails/tree/2-3-stable) - Tracks Rails 2.3.x with MiniTest 4.x.
|
292
285
|
* [3-x-stable](https://github.com/metaskills/minitest-spec-rails/tree/3-x-stable) - Oddly tracks Rails 3.x and 4.0 with MiniTest 4.x.
|
293
286
|
* master - Currently tracks Rails 4.1 which uses Minitest 5.0.
|
294
|
-
|
295
|
-
Our current build status is:
|
296
|
-
[](http://travis-ci.org/metaskills/minitest-spec-rails)
|
297
|
-
|
298
|
-
|
data/Rakefile
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
require 'bundler/gem_tasks'
|
2
2
|
require 'rake/testtask'
|
3
3
|
|
4
|
-
Rake::TestTask.new
|
5
|
-
t.libs = [
|
6
|
-
t.test_files = Dir.glob(
|
7
|
-
t.verbose =
|
4
|
+
Rake::TestTask.new do |t|
|
5
|
+
t.libs = %w[lib test]
|
6
|
+
t.test_files = Dir.glob('test/**/*_test.rb').sort
|
7
|
+
t.verbose = false
|
8
|
+
t.warning = false
|
8
9
|
end
|
9
10
|
|
10
|
-
task :
|
11
|
-
|
11
|
+
task default: :test
|
@@ -0,0 +1,128 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
minitest-spec-rails (6.0.2)
|
5
|
+
minitest (>= 5.0)
|
6
|
+
railties (>= 4.1)
|
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
|
+
appraisal (2.2.0)
|
49
|
+
bundler
|
50
|
+
rake
|
51
|
+
thor (>= 0.14.0)
|
52
|
+
arel (8.0.0)
|
53
|
+
builder (3.2.3)
|
54
|
+
concurrent-ruby (1.1.5)
|
55
|
+
crass (1.0.5)
|
56
|
+
erubi (1.9.0)
|
57
|
+
globalid (0.4.2)
|
58
|
+
activesupport (>= 4.2.0)
|
59
|
+
i18n (1.7.0)
|
60
|
+
concurrent-ruby (~> 1.0)
|
61
|
+
loofah (2.4.0)
|
62
|
+
crass (~> 1.0.2)
|
63
|
+
nokogiri (>= 1.5.9)
|
64
|
+
mail (2.7.1)
|
65
|
+
mini_mime (>= 0.1.1)
|
66
|
+
method_source (0.9.2)
|
67
|
+
mini_mime (1.0.2)
|
68
|
+
mini_portile2 (2.4.0)
|
69
|
+
minitest (5.10.1)
|
70
|
+
nio4r (2.5.2)
|
71
|
+
nokogiri (1.10.5)
|
72
|
+
mini_portile2 (~> 2.4.0)
|
73
|
+
rack (2.0.7)
|
74
|
+
rack-test (1.1.0)
|
75
|
+
rack (>= 1.0, < 3)
|
76
|
+
rails (5.1.7)
|
77
|
+
actioncable (= 5.1.7)
|
78
|
+
actionmailer (= 5.1.7)
|
79
|
+
actionpack (= 5.1.7)
|
80
|
+
actionview (= 5.1.7)
|
81
|
+
activejob (= 5.1.7)
|
82
|
+
activemodel (= 5.1.7)
|
83
|
+
activerecord (= 5.1.7)
|
84
|
+
activesupport (= 5.1.7)
|
85
|
+
bundler (>= 1.3.0)
|
86
|
+
railties (= 5.1.7)
|
87
|
+
sprockets-rails (>= 2.0.0)
|
88
|
+
rails-dom-testing (2.0.3)
|
89
|
+
activesupport (>= 4.2.0)
|
90
|
+
nokogiri (>= 1.6)
|
91
|
+
rails-html-sanitizer (1.3.0)
|
92
|
+
loofah (~> 2.3)
|
93
|
+
railties (5.1.7)
|
94
|
+
actionpack (= 5.1.7)
|
95
|
+
activesupport (= 5.1.7)
|
96
|
+
method_source
|
97
|
+
rake (>= 0.8.7)
|
98
|
+
thor (>= 0.18.1, < 2.0)
|
99
|
+
rake (13.0.1)
|
100
|
+
sprockets (4.0.0)
|
101
|
+
concurrent-ruby (~> 1.0)
|
102
|
+
rack (> 1, < 3)
|
103
|
+
sprockets-rails (3.2.1)
|
104
|
+
actionpack (>= 4.0)
|
105
|
+
activesupport (>= 4.0)
|
106
|
+
sprockets (>= 3.0.0)
|
107
|
+
sqlite3 (1.4.1)
|
108
|
+
thor (0.20.3)
|
109
|
+
thread_safe (0.3.6)
|
110
|
+
tzinfo (1.2.5)
|
111
|
+
thread_safe (~> 0.1)
|
112
|
+
websocket-driver (0.6.5)
|
113
|
+
websocket-extensions (>= 0.1.0)
|
114
|
+
websocket-extensions (0.1.4)
|
115
|
+
|
116
|
+
PLATFORMS
|
117
|
+
ruby
|
118
|
+
|
119
|
+
DEPENDENCIES
|
120
|
+
appraisal
|
121
|
+
minitest (= 5.10.1)
|
122
|
+
minitest-spec-rails!
|
123
|
+
rails (~> 5.1.0)
|
124
|
+
rake
|
125
|
+
sqlite3
|
126
|
+
|
127
|
+
BUNDLED WITH
|
128
|
+
1.17.3
|
@@ -0,0 +1,136 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
minitest-spec-rails (6.0.2)
|
5
|
+
minitest (>= 5.0)
|
6
|
+
railties (>= 4.1)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (5.2.4)
|
12
|
+
actionpack (= 5.2.4)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (>= 0.6.1)
|
15
|
+
actionmailer (5.2.4)
|
16
|
+
actionpack (= 5.2.4)
|
17
|
+
actionview (= 5.2.4)
|
18
|
+
activejob (= 5.2.4)
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
20
|
+
rails-dom-testing (~> 2.0)
|
21
|
+
actionpack (5.2.4)
|
22
|
+
actionview (= 5.2.4)
|
23
|
+
activesupport (= 5.2.4)
|
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.2.4)
|
29
|
+
activesupport (= 5.2.4)
|
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)
|
35
|
+
activesupport (= 5.2.4)
|
36
|
+
globalid (>= 0.3.6)
|
37
|
+
activemodel (5.2.4)
|
38
|
+
activesupport (= 5.2.4)
|
39
|
+
activerecord (5.2.4)
|
40
|
+
activemodel (= 5.2.4)
|
41
|
+
activesupport (= 5.2.4)
|
42
|
+
arel (>= 9.0)
|
43
|
+
activestorage (5.2.4)
|
44
|
+
actionpack (= 5.2.4)
|
45
|
+
activerecord (= 5.2.4)
|
46
|
+
marcel (~> 0.3.1)
|
47
|
+
activesupport (5.2.4)
|
48
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
49
|
+
i18n (>= 0.7, < 2)
|
50
|
+
minitest (~> 5.1)
|
51
|
+
tzinfo (~> 1.1)
|
52
|
+
appraisal (2.2.0)
|
53
|
+
bundler
|
54
|
+
rake
|
55
|
+
thor (>= 0.14.0)
|
56
|
+
arel (9.0.0)
|
57
|
+
builder (3.2.3)
|
58
|
+
concurrent-ruby (1.1.5)
|
59
|
+
crass (1.0.5)
|
60
|
+
erubi (1.9.0)
|
61
|
+
globalid (0.4.2)
|
62
|
+
activesupport (>= 4.2.0)
|
63
|
+
i18n (1.7.0)
|
64
|
+
concurrent-ruby (~> 1.0)
|
65
|
+
loofah (2.4.0)
|
66
|
+
crass (~> 1.0.2)
|
67
|
+
nokogiri (>= 1.5.9)
|
68
|
+
mail (2.7.1)
|
69
|
+
mini_mime (>= 0.1.1)
|
70
|
+
marcel (0.3.3)
|
71
|
+
mimemagic (~> 0.3.2)
|
72
|
+
method_source (0.9.2)
|
73
|
+
mimemagic (0.3.3)
|
74
|
+
mini_mime (1.0.2)
|
75
|
+
mini_portile2 (2.4.0)
|
76
|
+
minitest (5.13.0)
|
77
|
+
nio4r (2.5.2)
|
78
|
+
nokogiri (1.10.5)
|
79
|
+
mini_portile2 (~> 2.4.0)
|
80
|
+
rack (2.0.7)
|
81
|
+
rack-test (1.1.0)
|
82
|
+
rack (>= 1.0, < 3)
|
83
|
+
rails (5.2.4)
|
84
|
+
actioncable (= 5.2.4)
|
85
|
+
actionmailer (= 5.2.4)
|
86
|
+
actionpack (= 5.2.4)
|
87
|
+
actionview (= 5.2.4)
|
88
|
+
activejob (= 5.2.4)
|
89
|
+
activemodel (= 5.2.4)
|
90
|
+
activerecord (= 5.2.4)
|
91
|
+
activestorage (= 5.2.4)
|
92
|
+
activesupport (= 5.2.4)
|
93
|
+
bundler (>= 1.3.0)
|
94
|
+
railties (= 5.2.4)
|
95
|
+
sprockets-rails (>= 2.0.0)
|
96
|
+
rails-dom-testing (2.0.3)
|
97
|
+
activesupport (>= 4.2.0)
|
98
|
+
nokogiri (>= 1.6)
|
99
|
+
rails-html-sanitizer (1.3.0)
|
100
|
+
loofah (~> 2.3)
|
101
|
+
railties (5.2.4)
|
102
|
+
actionpack (= 5.2.4)
|
103
|
+
activesupport (= 5.2.4)
|
104
|
+
method_source
|
105
|
+
rake (>= 0.8.7)
|
106
|
+
thor (>= 0.19.0, < 2.0)
|
107
|
+
rake (13.0.1)
|
108
|
+
sprockets (4.0.0)
|
109
|
+
concurrent-ruby (~> 1.0)
|
110
|
+
rack (> 1, < 3)
|
111
|
+
sprockets-rails (3.2.1)
|
112
|
+
actionpack (>= 4.0)
|
113
|
+
activesupport (>= 4.0)
|
114
|
+
sprockets (>= 3.0.0)
|
115
|
+
sqlite3 (1.4.1)
|
116
|
+
thor (0.20.3)
|
117
|
+
thread_safe (0.3.6)
|
118
|
+
tzinfo (1.2.5)
|
119
|
+
thread_safe (~> 0.1)
|
120
|
+
websocket-driver (0.7.1)
|
121
|
+
websocket-extensions (>= 0.1.0)
|
122
|
+
websocket-extensions (0.1.4)
|
123
|
+
|
124
|
+
PLATFORMS
|
125
|
+
ruby
|
126
|
+
|
127
|
+
DEPENDENCIES
|
128
|
+
appraisal
|
129
|
+
minitest
|
130
|
+
minitest-spec-rails!
|
131
|
+
rails (~> 5.2.0)
|
132
|
+
rake
|
133
|
+
sqlite3
|
134
|
+
|
135
|
+
BUNDLED WITH
|
136
|
+
1.17.3
|