minitest-spec-rails 5.5.0 → 6.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 91f579b3835a673c97eb257ba9e138b6543677db
4
- data.tar.gz: 9a772420c9d8de8bd15504dba4183408ddf6729c
2
+ SHA256:
3
+ metadata.gz: e1208da75fe8346b2c20abf1fe9d1170051f905e9971458a4e17697b1068de11
4
+ data.tar.gz: 39478927063b6edd84eb1e1a63c47df72bd1daaa99796887e90b5036c91da5fe
5
5
  SHA512:
6
- metadata.gz: 739b72f9c49c83a5376eac368be8d8ce820bbb07d24cff80f82b3ffeb861e9934bcf919b75a1b3bac5bfab87dc905a296b7d2989344ee86b137fb6f375f8410e
7
- data.tar.gz: 69d8de313030964736d2355e70b152fee2103472f249714ebb93e82997cbb8fb37b9337674184043d75cda15e466efa461aa6c3406a75ab5b285514181854974
6
+ metadata.gz: ec50c46511c1b6cbd8a6e9584dbbd15c2d553cfcdf313ca40e45658714b379ff0002b579b1eef01794035af3b0da8e6244e274f422ae4494020a484417690669
7
+ data.tar.gz: 8eb54157502a84005a737958b6910c897327374ab7f4fa0683613b89a603a0ac2708e5abf60f84fa520a9940339c39b6cfbd4a10c2d8bf7bcc491858b87df031
@@ -0,0 +1,34 @@
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
+ - name: Setup Ruby
22
+ uses: actions/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby }}
25
+ - name: Bundle
26
+ env:
27
+ MTSR_RAILS_VERSION: ${{ matrix.rails }}
28
+ run: |
29
+ export BUNDLE_GEMFILE="${GITHUB_WORKSPACE}/gemfiles/${MTSR_RAILS_VERSION}.gemfile"
30
+ gem uninstall -aIx bundler
31
+ gem install bundler -v 1.17.3
32
+ bundle install --jobs 4 --retry 3
33
+ - name: Test
34
+ run: bundle exec rake
data/Appraisals CHANGED
@@ -1,19 +1,16 @@
1
- appraise 'rails41' do
2
- gem 'rails', '~> 4.1.0'
3
- end
4
-
5
- appraise 'rails42' do
6
- gem 'rails', '~> 4.2.0'
7
- end
8
1
 
9
- appraise 'rails50' do
10
- gem 'rails', '5.0.0'
2
+ appraise 'rails-v5.1.x' do
3
+ gem 'rails', '~> 5.1.0'
11
4
  # https://github.com/rails/rails/issues/29031
12
5
  gem 'minitest', '5.10.1'
13
6
  end
14
7
 
15
- appraise 'rails51' do
16
- gem 'rails', '5.1.0'
17
- # https://github.com/rails/rails/issues/29031
18
- gem 'minitest', '5.10.1'
8
+ appraise 'rails-v5.2.x' do
9
+ gem 'rails', '~> 5.2.0'
10
+ gem 'minitest'
11
+ end
12
+
13
+ appraise 'rails_v6.0.x' do
14
+ gem 'rails', '~> 6.0.0'
15
+ gem 'minitest'
19
16
  end
@@ -1,3 +1,7 @@
1
+ ## 5.6.0
2
+
3
+ * Add Rails v6 via gem spec support.
4
+
1
5
  ## 5.5.0
2
6
 
3
7
  * Fix source_location of methods defined with `test`. Fixes #91. Thanks @barrettkingram
data/README.md CHANGED
@@ -6,7 +6,7 @@
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
8
  [![Gem Version](https://badge.fury.io/rb/minitest-spec-rails.svg)](http://badge.fury.io/rb/minitest-spec-rails)
9
- [![Build Status](https://secure.travis-ci.org/metaskills/minitest-spec-rails.svg)](http://travis-ci.org/metaskills/minitest-spec-rails)
9
+ [![CI Status](https://github.com/metaskills/minitest-spec-rails/workflows/CI/badge.svg)](https://launch-editor.github.com/actions?nwo=metaskills%2Fminitest-spec-rails&workflowID=CI)
10
10
  [![Maintainability](https://api.codeclimate.com/v1/badges/e67addda6fd009b68349/maintainability)](https://codeclimate.com/github/metaskills/minitest-spec-rails/maintainability)
11
11
 
12
12
 
@@ -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 or 4.2, 5.x
18
+ #### Rails 4.1 to 6.0
19
19
 
20
- Our master branch is tracking rails 4.1, 4.2 and hopefully up to 5.x active development.
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
@@ -263,7 +263,7 @@ If your view helper tests give you an eror like this: `RuntimeError: In order to
263
263
 
264
264
  ## Contributing
265
265
 
266
- We run our tests on [Travis CI](http://travis-ci.org/metaskills/minitest-spec-rails). 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.
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.
267
267
 
268
268
  ```shell
269
269
  $ bundle install
@@ -274,7 +274,7 @@ $ bundle exec appraisal rake test
274
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.
275
275
 
276
276
  ```shell
277
- $ bundle exec appraisal rails41 rake test
277
+ $ bundle exec appraisal rails50 rake test
278
278
  ```
279
279
 
280
280
  We have a few branches for each major Rails version.
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "5.0.0"
5
+ gem "rails", "~> 5.1.0"
6
6
  gem "minitest", "5.10.1"
7
7
 
8
- gemspec :path => "../"
8
+ gemspec path: "../"
@@ -1,48 +1,48 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- minitest-spec-rails (5.5.0)
5
- minitest (~> 5.0)
4
+ minitest-spec-rails (6.0.0)
5
+ minitest (>= 5.0)
6
6
  rails (>= 4.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (5.1.0)
12
- actionpack (= 5.1.0)
11
+ actioncable (5.1.7)
12
+ actionpack (= 5.1.7)
13
13
  nio4r (~> 2.0)
14
14
  websocket-driver (~> 0.6.1)
15
- actionmailer (5.1.0)
16
- actionpack (= 5.1.0)
17
- actionview (= 5.1.0)
18
- activejob (= 5.1.0)
15
+ actionmailer (5.1.7)
16
+ actionpack (= 5.1.7)
17
+ actionview (= 5.1.7)
18
+ activejob (= 5.1.7)
19
19
  mail (~> 2.5, >= 2.5.4)
20
20
  rails-dom-testing (~> 2.0)
21
- actionpack (5.1.0)
22
- actionview (= 5.1.0)
23
- activesupport (= 5.1.0)
21
+ actionpack (5.1.7)
22
+ actionview (= 5.1.7)
23
+ activesupport (= 5.1.7)
24
24
  rack (~> 2.0)
25
- rack-test (~> 0.6.3)
25
+ rack-test (>= 0.6.3)
26
26
  rails-dom-testing (~> 2.0)
27
27
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.1.0)
29
- activesupport (= 5.1.0)
28
+ actionview (5.1.7)
29
+ activesupport (= 5.1.7)
30
30
  builder (~> 3.1)
31
31
  erubi (~> 1.4)
32
32
  rails-dom-testing (~> 2.0)
33
33
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.1.0)
35
- activesupport (= 5.1.0)
34
+ activejob (5.1.7)
35
+ activesupport (= 5.1.7)
36
36
  globalid (>= 0.3.6)
37
- activemodel (5.1.0)
38
- activesupport (= 5.1.0)
39
- activerecord (5.1.0)
40
- activemodel (= 5.1.0)
41
- activesupport (= 5.1.0)
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
42
  arel (~> 8.0)
43
- activesupport (5.1.0)
43
+ activesupport (5.1.7)
44
44
  concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
45
+ i18n (>= 0.7, < 2)
46
46
  minitest (~> 5.1)
47
47
  tzinfo (~> 1.1)
48
48
  appraisal (2.2.0)
@@ -51,12 +51,12 @@ GEM
51
51
  thor (>= 0.14.0)
52
52
  arel (8.0.0)
53
53
  builder (3.2.3)
54
- concurrent-ruby (1.1.4)
54
+ concurrent-ruby (1.1.5)
55
55
  crass (1.0.4)
56
56
  erubi (1.8.0)
57
57
  globalid (0.4.2)
58
58
  activesupport (>= 4.2.0)
59
- i18n (0.9.5)
59
+ i18n (1.6.0)
60
60
  concurrent-ruby (~> 1.0)
61
61
  loofah (2.2.3)
62
62
  crass (~> 1.0.2)
@@ -64,39 +64,39 @@ GEM
64
64
  mail (2.7.1)
65
65
  mini_mime (>= 0.1.1)
66
66
  method_source (0.9.2)
67
- mini_mime (1.0.1)
67
+ mini_mime (1.0.2)
68
68
  mini_portile2 (2.4.0)
69
69
  minitest (5.10.1)
70
- nio4r (2.3.1)
71
- nokogiri (1.9.1)
70
+ nio4r (2.5.1)
71
+ nokogiri (1.10.4)
72
72
  mini_portile2 (~> 2.4.0)
73
- rack (2.0.6)
74
- rack-test (0.6.3)
75
- rack (>= 1.0)
76
- rails (5.1.0)
77
- actioncable (= 5.1.0)
78
- actionmailer (= 5.1.0)
79
- actionpack (= 5.1.0)
80
- actionview (= 5.1.0)
81
- activejob (= 5.1.0)
82
- activemodel (= 5.1.0)
83
- activerecord (= 5.1.0)
84
- activesupport (= 5.1.0)
85
- bundler (>= 1.3.0, < 2.0)
86
- railties (= 5.1.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
87
  sprockets-rails (>= 2.0.0)
88
88
  rails-dom-testing (2.0.3)
89
89
  activesupport (>= 4.2.0)
90
90
  nokogiri (>= 1.6)
91
- rails-html-sanitizer (1.0.4)
91
+ rails-html-sanitizer (1.2.0)
92
92
  loofah (~> 2.2, >= 2.2.2)
93
- railties (5.1.0)
94
- actionpack (= 5.1.0)
95
- activesupport (= 5.1.0)
93
+ railties (5.1.7)
94
+ actionpack (= 5.1.7)
95
+ activesupport (= 5.1.7)
96
96
  method_source
97
97
  rake (>= 0.8.7)
98
98
  thor (>= 0.18.1, < 2.0)
99
- rake (12.3.2)
99
+ rake (12.3.3)
100
100
  sprockets (3.7.2)
101
101
  concurrent-ruby (~> 1.0)
102
102
  rack (> 1, < 3)
@@ -104,14 +104,14 @@ GEM
104
104
  actionpack (>= 4.0)
105
105
  activesupport (>= 4.0)
106
106
  sprockets (>= 3.0.0)
107
- sqlite3 (1.3.13)
107
+ sqlite3 (1.4.1)
108
108
  thor (0.20.3)
109
109
  thread_safe (0.3.6)
110
110
  tzinfo (1.2.5)
111
111
  thread_safe (~> 0.1)
112
112
  websocket-driver (0.6.5)
113
113
  websocket-extensions (>= 0.1.0)
114
- websocket-extensions (0.1.3)
114
+ websocket-extensions (0.1.4)
115
115
 
116
116
  PLATFORMS
117
117
  ruby
@@ -120,9 +120,9 @@ DEPENDENCIES
120
120
  appraisal
121
121
  minitest (= 5.10.1)
122
122
  minitest-spec-rails!
123
- rails (= 5.1.0)
123
+ rails (~> 5.1.0)
124
124
  rake
125
125
  sqlite3
126
126
 
127
127
  BUNDLED WITH
128
- 1.17.2
128
+ 1.17.3
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 4.1.0"
5
+ gem "rails", "~> 5.2.0"
6
+ gem "minitest"
6
7
 
7
- gemspec :path => "../"
8
+ gemspec path: "../"
@@ -0,0 +1,136 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ minitest-spec-rails (6.0.0)
5
+ minitest (>= 5.0)
6
+ rails (>= 4.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.2.3)
12
+ actionpack (= 5.2.3)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailer (5.2.3)
16
+ actionpack (= 5.2.3)
17
+ actionview (= 5.2.3)
18
+ activejob (= 5.2.3)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.2.3)
22
+ actionview (= 5.2.3)
23
+ activesupport (= 5.2.3)
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.3)
29
+ activesupport (= 5.2.3)
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.3)
35
+ activesupport (= 5.2.3)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.2.3)
38
+ activesupport (= 5.2.3)
39
+ activerecord (5.2.3)
40
+ activemodel (= 5.2.3)
41
+ activesupport (= 5.2.3)
42
+ arel (>= 9.0)
43
+ activestorage (5.2.3)
44
+ actionpack (= 5.2.3)
45
+ activerecord (= 5.2.3)
46
+ marcel (~> 0.3.1)
47
+ activesupport (5.2.3)
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.4)
60
+ erubi (1.8.0)
61
+ globalid (0.4.2)
62
+ activesupport (>= 4.2.0)
63
+ i18n (1.6.0)
64
+ concurrent-ruby (~> 1.0)
65
+ loofah (2.2.3)
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.11.3)
77
+ nio4r (2.5.1)
78
+ nokogiri (1.10.4)
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.3)
84
+ actioncable (= 5.2.3)
85
+ actionmailer (= 5.2.3)
86
+ actionpack (= 5.2.3)
87
+ actionview (= 5.2.3)
88
+ activejob (= 5.2.3)
89
+ activemodel (= 5.2.3)
90
+ activerecord (= 5.2.3)
91
+ activestorage (= 5.2.3)
92
+ activesupport (= 5.2.3)
93
+ bundler (>= 1.3.0)
94
+ railties (= 5.2.3)
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.2.0)
100
+ loofah (~> 2.2, >= 2.2.2)
101
+ railties (5.2.3)
102
+ actionpack (= 5.2.3)
103
+ activesupport (= 5.2.3)
104
+ method_source
105
+ rake (>= 0.8.7)
106
+ thor (>= 0.19.0, < 2.0)
107
+ rake (12.3.3)
108
+ sprockets (3.7.2)
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
@@ -2,6 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 4.2.0"
5
+ gem "rails", "~> 6.0.0"
6
+ gem "minitest"
6
7
 
7
- gemspec :path => "../"
8
+ gemspec path: "../"
@@ -0,0 +1,152 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ minitest-spec-rails (6.0.0)
5
+ minitest (>= 5.0)
6
+ rails (>= 4.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (6.0.0)
12
+ actionpack (= 6.0.0)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (6.0.0)
16
+ actionpack (= 6.0.0)
17
+ activejob (= 6.0.0)
18
+ activerecord (= 6.0.0)
19
+ activestorage (= 6.0.0)
20
+ activesupport (= 6.0.0)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.0.0)
23
+ actionpack (= 6.0.0)
24
+ actionview (= 6.0.0)
25
+ activejob (= 6.0.0)
26
+ mail (~> 2.5, >= 2.5.4)
27
+ rails-dom-testing (~> 2.0)
28
+ actionpack (6.0.0)
29
+ actionview (= 6.0.0)
30
+ activesupport (= 6.0.0)
31
+ rack (~> 2.0)
32
+ rack-test (>= 0.6.3)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
35
+ actiontext (6.0.0)
36
+ actionpack (= 6.0.0)
37
+ activerecord (= 6.0.0)
38
+ activestorage (= 6.0.0)
39
+ activesupport (= 6.0.0)
40
+ nokogiri (>= 1.8.5)
41
+ actionview (6.0.0)
42
+ activesupport (= 6.0.0)
43
+ builder (~> 3.1)
44
+ erubi (~> 1.4)
45
+ rails-dom-testing (~> 2.0)
46
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
47
+ activejob (6.0.0)
48
+ activesupport (= 6.0.0)
49
+ globalid (>= 0.3.6)
50
+ activemodel (6.0.0)
51
+ activesupport (= 6.0.0)
52
+ activerecord (6.0.0)
53
+ activemodel (= 6.0.0)
54
+ activesupport (= 6.0.0)
55
+ activestorage (6.0.0)
56
+ actionpack (= 6.0.0)
57
+ activejob (= 6.0.0)
58
+ activerecord (= 6.0.0)
59
+ marcel (~> 0.3.1)
60
+ activesupport (6.0.0)
61
+ concurrent-ruby (~> 1.0, >= 1.0.2)
62
+ i18n (>= 0.7, < 2)
63
+ minitest (~> 5.1)
64
+ tzinfo (~> 1.1)
65
+ zeitwerk (~> 2.1, >= 2.1.8)
66
+ appraisal (2.2.0)
67
+ bundler
68
+ rake
69
+ thor (>= 0.14.0)
70
+ builder (3.2.3)
71
+ concurrent-ruby (1.1.5)
72
+ crass (1.0.4)
73
+ erubi (1.8.0)
74
+ globalid (0.4.2)
75
+ activesupport (>= 4.2.0)
76
+ i18n (1.6.0)
77
+ concurrent-ruby (~> 1.0)
78
+ loofah (2.2.3)
79
+ crass (~> 1.0.2)
80
+ nokogiri (>= 1.5.9)
81
+ mail (2.7.1)
82
+ mini_mime (>= 0.1.1)
83
+ marcel (0.3.3)
84
+ mimemagic (~> 0.3.2)
85
+ method_source (0.9.2)
86
+ mimemagic (0.3.3)
87
+ mini_mime (1.0.2)
88
+ mini_portile2 (2.4.0)
89
+ minitest (5.11.3)
90
+ nio4r (2.5.1)
91
+ nokogiri (1.10.4)
92
+ mini_portile2 (~> 2.4.0)
93
+ rack (2.0.7)
94
+ rack-test (1.1.0)
95
+ rack (>= 1.0, < 3)
96
+ rails (6.0.0)
97
+ actioncable (= 6.0.0)
98
+ actionmailbox (= 6.0.0)
99
+ actionmailer (= 6.0.0)
100
+ actionpack (= 6.0.0)
101
+ actiontext (= 6.0.0)
102
+ actionview (= 6.0.0)
103
+ activejob (= 6.0.0)
104
+ activemodel (= 6.0.0)
105
+ activerecord (= 6.0.0)
106
+ activestorage (= 6.0.0)
107
+ activesupport (= 6.0.0)
108
+ bundler (>= 1.3.0)
109
+ railties (= 6.0.0)
110
+ sprockets-rails (>= 2.0.0)
111
+ rails-dom-testing (2.0.3)
112
+ activesupport (>= 4.2.0)
113
+ nokogiri (>= 1.6)
114
+ rails-html-sanitizer (1.2.0)
115
+ loofah (~> 2.2, >= 2.2.2)
116
+ railties (6.0.0)
117
+ actionpack (= 6.0.0)
118
+ activesupport (= 6.0.0)
119
+ method_source
120
+ rake (>= 0.8.7)
121
+ thor (>= 0.20.3, < 2.0)
122
+ rake (12.3.3)
123
+ sprockets (3.7.2)
124
+ concurrent-ruby (~> 1.0)
125
+ rack (> 1, < 3)
126
+ sprockets-rails (3.2.1)
127
+ actionpack (>= 4.0)
128
+ activesupport (>= 4.0)
129
+ sprockets (>= 3.0.0)
130
+ sqlite3 (1.4.1)
131
+ thor (0.20.3)
132
+ thread_safe (0.3.6)
133
+ tzinfo (1.2.5)
134
+ thread_safe (~> 0.1)
135
+ websocket-driver (0.7.1)
136
+ websocket-extensions (>= 0.1.0)
137
+ websocket-extensions (0.1.4)
138
+ zeitwerk (2.1.9)
139
+
140
+ PLATFORMS
141
+ ruby
142
+
143
+ DEPENDENCIES
144
+ appraisal
145
+ minitest
146
+ minitest-spec-rails!
147
+ rails (~> 6.0.0)
148
+ rake
149
+ sqlite3
150
+
151
+ BUNDLED WITH
152
+ 1.17.3
@@ -1,3 +1,3 @@
1
1
  module MiniTestSpecRails
2
- VERSION = '5.5.0'.freeze
2
+ VERSION = '6.0.0'.freeze
3
3
  end
@@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
16
16
  gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
17
  gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
18
18
  gem.require_paths = ['lib']
19
- gem.add_runtime_dependency 'minitest', '~> 5.0'
19
+ gem.add_runtime_dependency 'minitest', '>= 5.0'
20
20
  gem.add_runtime_dependency 'rails', '>= 4.1'
21
21
  gem.add_development_dependency 'appraisal'
22
22
  gem.add_development_dependency 'rake'
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-spec-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.5.0
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ken Collins
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-22 00:00:00.000000000 Z
11
+ date: 2019-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '5.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '5.0'
27
27
  - !ruby/object:Gem::Dependency
@@ -89,9 +89,9 @@ executables: []
89
89
  extensions: []
90
90
  extra_rdoc_files: []
91
91
  files:
92
+ - ".github/workflows/ci.yml"
92
93
  - ".gitignore"
93
94
  - ".rubocop.yml"
94
- - ".travis.yml"
95
95
  - Appraisals
96
96
  - CHANGELOG.md
97
97
  - CODE_OF_CONDUCT.md
@@ -99,14 +99,12 @@ files:
99
99
  - MIT-LICENSE
100
100
  - README.md
101
101
  - Rakefile
102
- - gemfiles/rails41.gemfile
103
- - gemfiles/rails41.gemfile.lock
104
- - gemfiles/rails42.gemfile
105
- - gemfiles/rails42.gemfile.lock
106
- - gemfiles/rails50.gemfile
107
- - gemfiles/rails50.gemfile.lock
108
- - gemfiles/rails51.gemfile
109
- - gemfiles/rails51.gemfile.lock
102
+ - gemfiles/rails_v5.1.x.gemfile
103
+ - gemfiles/rails_v5.1.x.gemfile.lock
104
+ - gemfiles/rails_v5.2.x.gemfile
105
+ - gemfiles/rails_v5.2.x.gemfile.lock
106
+ - gemfiles/rails_v6.0.x.gemfile
107
+ - gemfiles/rails_v6.0.x.gemfile.lock
110
108
  - lib/minitest-spec-rails.rb
111
109
  - lib/minitest-spec-rails/dsl.rb
112
110
  - lib/minitest-spec-rails/init/action_controller.rb
@@ -172,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
172
170
  version: '0'
173
171
  requirements: []
174
172
  rubyforge_project:
175
- rubygems_version: 2.4.5.1
173
+ rubygems_version: 2.7.6.2
176
174
  signing_key:
177
175
  specification_version: 4
178
176
  summary: Make Rails Use MiniTest::Spec!
@@ -1,25 +0,0 @@
1
- sudo: false
2
- cache: bundler
3
- rvm:
4
- - 2.1
5
- - 2.2.5
6
- - 2.3.1
7
- gemfile:
8
- - gemfiles/rails41.gemfile
9
- - gemfiles/rails42.gemfile
10
- - gemfiles/rails50.gemfile
11
- - gemfiles/rails51.gemfile
12
- install:
13
- - gem install rubocop -v 0.57.2
14
- - gem install bundler -v 1.17.3
15
- - bundle --version
16
- - bundle install
17
- script:
18
- - bundle exec rake test
19
- - rubocop
20
- matrix:
21
- exclude:
22
- - rvm: 2.1
23
- gemfile: gemfiles/rails50.gemfile
24
- - rvm: 2.1
25
- gemfile: gemfiles/rails51.gemfile
@@ -1,95 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- minitest-spec-rails (5.5.0)
5
- minitest (~> 5.0)
6
- rails (>= 4.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (4.1.16)
12
- actionpack (= 4.1.16)
13
- actionview (= 4.1.16)
14
- mail (~> 2.5, >= 2.5.4)
15
- actionpack (4.1.16)
16
- actionview (= 4.1.16)
17
- activesupport (= 4.1.16)
18
- rack (~> 1.5.2)
19
- rack-test (~> 0.6.2)
20
- actionview (4.1.16)
21
- activesupport (= 4.1.16)
22
- builder (~> 3.1)
23
- erubis (~> 2.7.0)
24
- activemodel (4.1.16)
25
- activesupport (= 4.1.16)
26
- builder (~> 3.1)
27
- activerecord (4.1.16)
28
- activemodel (= 4.1.16)
29
- activesupport (= 4.1.16)
30
- arel (~> 5.0.0)
31
- activesupport (4.1.16)
32
- i18n (~> 0.6, >= 0.6.9)
33
- json (~> 1.7, >= 1.7.7)
34
- minitest (~> 5.1)
35
- thread_safe (~> 0.1)
36
- tzinfo (~> 1.1)
37
- appraisal (2.2.0)
38
- bundler
39
- rake
40
- thor (>= 0.14.0)
41
- arel (5.0.1.20140414130214)
42
- builder (3.2.3)
43
- concurrent-ruby (1.1.4)
44
- erubis (2.7.0)
45
- i18n (0.9.5)
46
- concurrent-ruby (~> 1.0)
47
- json (1.8.6)
48
- mail (2.7.1)
49
- mini_mime (>= 0.1.1)
50
- mini_mime (1.0.1)
51
- minitest (5.11.3)
52
- rack (1.5.5)
53
- rack-test (0.6.3)
54
- rack (>= 1.0)
55
- rails (4.1.16)
56
- actionmailer (= 4.1.16)
57
- actionpack (= 4.1.16)
58
- actionview (= 4.1.16)
59
- activemodel (= 4.1.16)
60
- activerecord (= 4.1.16)
61
- activesupport (= 4.1.16)
62
- bundler (>= 1.3.0, < 2.0)
63
- railties (= 4.1.16)
64
- sprockets-rails (~> 2.0)
65
- railties (4.1.16)
66
- actionpack (= 4.1.16)
67
- activesupport (= 4.1.16)
68
- rake (>= 0.8.7)
69
- thor (>= 0.18.1, < 2.0)
70
- rake (12.3.2)
71
- sprockets (3.7.2)
72
- concurrent-ruby (~> 1.0)
73
- rack (> 1, < 3)
74
- sprockets-rails (2.3.3)
75
- actionpack (>= 3.0)
76
- activesupport (>= 3.0)
77
- sprockets (>= 2.8, < 4.0)
78
- sqlite3 (1.3.13)
79
- thor (0.20.3)
80
- thread_safe (0.3.6)
81
- tzinfo (1.2.5)
82
- thread_safe (~> 0.1)
83
-
84
- PLATFORMS
85
- ruby
86
-
87
- DEPENDENCIES
88
- appraisal
89
- minitest-spec-rails!
90
- rails (~> 4.1.0)
91
- rake
92
- sqlite3
93
-
94
- BUNDLED WITH
95
- 1.17.2
@@ -1,120 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- minitest-spec-rails (5.5.0)
5
- minitest (~> 5.0)
6
- rails (>= 4.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (4.2.11)
12
- actionpack (= 4.2.11)
13
- actionview (= 4.2.11)
14
- activejob (= 4.2.11)
15
- mail (~> 2.5, >= 2.5.4)
16
- rails-dom-testing (~> 1.0, >= 1.0.5)
17
- actionpack (4.2.11)
18
- actionview (= 4.2.11)
19
- activesupport (= 4.2.11)
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)
25
- activesupport (= 4.2.11)
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)
31
- activesupport (= 4.2.11)
32
- globalid (>= 0.3.0)
33
- activemodel (4.2.11)
34
- activesupport (= 4.2.11)
35
- builder (~> 3.1)
36
- activerecord (4.2.11)
37
- activemodel (= 4.2.11)
38
- activesupport (= 4.2.11)
39
- arel (~> 6.0)
40
- activesupport (4.2.11)
41
- i18n (~> 0.7)
42
- minitest (~> 5.1)
43
- thread_safe (~> 0.3, >= 0.3.4)
44
- tzinfo (~> 1.1)
45
- appraisal (2.2.0)
46
- bundler
47
- rake
48
- thor (>= 0.14.0)
49
- arel (6.0.4)
50
- builder (3.2.3)
51
- concurrent-ruby (1.1.4)
52
- crass (1.0.4)
53
- erubis (2.7.0)
54
- globalid (0.4.2)
55
- activesupport (>= 4.2.0)
56
- i18n (0.9.5)
57
- concurrent-ruby (~> 1.0)
58
- loofah (2.2.3)
59
- crass (~> 1.0.2)
60
- nokogiri (>= 1.5.9)
61
- mail (2.7.1)
62
- mini_mime (>= 0.1.1)
63
- mini_mime (1.0.1)
64
- mini_portile2 (2.4.0)
65
- minitest (5.11.3)
66
- nokogiri (1.9.1)
67
- mini_portile2 (~> 2.4.0)
68
- rack (1.6.11)
69
- rack-test (0.6.3)
70
- rack (>= 1.0)
71
- rails (4.2.11)
72
- actionmailer (= 4.2.11)
73
- actionpack (= 4.2.11)
74
- actionview (= 4.2.11)
75
- activejob (= 4.2.11)
76
- activemodel (= 4.2.11)
77
- activerecord (= 4.2.11)
78
- activesupport (= 4.2.11)
79
- bundler (>= 1.3.0, < 2.0)
80
- railties (= 4.2.11)
81
- sprockets-rails
82
- rails-deprecated_sanitizer (1.0.3)
83
- activesupport (>= 4.2.0.alpha)
84
- rails-dom-testing (1.0.9)
85
- activesupport (>= 4.2.0, < 5.0)
86
- nokogiri (~> 1.6)
87
- rails-deprecated_sanitizer (>= 1.0.1)
88
- rails-html-sanitizer (1.0.4)
89
- loofah (~> 2.2, >= 2.2.2)
90
- railties (4.2.11)
91
- actionpack (= 4.2.11)
92
- activesupport (= 4.2.11)
93
- rake (>= 0.8.7)
94
- thor (>= 0.18.1, < 2.0)
95
- rake (12.3.2)
96
- sprockets (3.7.2)
97
- concurrent-ruby (~> 1.0)
98
- rack (> 1, < 3)
99
- sprockets-rails (3.2.1)
100
- actionpack (>= 4.0)
101
- activesupport (>= 4.0)
102
- sprockets (>= 3.0.0)
103
- sqlite3 (1.3.13)
104
- thor (0.20.3)
105
- thread_safe (0.3.6)
106
- tzinfo (1.2.5)
107
- thread_safe (~> 0.1)
108
-
109
- PLATFORMS
110
- ruby
111
-
112
- DEPENDENCIES
113
- appraisal
114
- minitest-spec-rails!
115
- rails (~> 4.2.0)
116
- rake
117
- sqlite3
118
-
119
- BUNDLED WITH
120
- 1.17.2
@@ -1,128 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- minitest-spec-rails (5.5.0)
5
- minitest (~> 5.0)
6
- rails (>= 4.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.0.0)
12
- actionpack (= 5.0.0)
13
- nio4r (~> 1.2)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.0.0)
16
- actionpack (= 5.0.0)
17
- actionview (= 5.0.0)
18
- activejob (= 5.0.0)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.0.0)
22
- actionview (= 5.0.0)
23
- activesupport (= 5.0.0)
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.0)
29
- activesupport (= 5.0.0)
30
- builder (~> 3.1)
31
- erubis (~> 2.7.0)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
- activejob (5.0.0)
35
- activesupport (= 5.0.0)
36
- globalid (>= 0.3.6)
37
- activemodel (5.0.0)
38
- activesupport (= 5.0.0)
39
- activerecord (5.0.0)
40
- activemodel (= 5.0.0)
41
- activesupport (= 5.0.0)
42
- arel (~> 7.0)
43
- activesupport (5.0.0)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- appraisal (2.2.0)
49
- bundler
50
- rake
51
- thor (>= 0.14.0)
52
- arel (7.1.4)
53
- builder (3.2.3)
54
- concurrent-ruby (1.1.4)
55
- crass (1.0.4)
56
- erubis (2.7.0)
57
- globalid (0.4.2)
58
- activesupport (>= 4.2.0)
59
- i18n (0.9.5)
60
- concurrent-ruby (~> 1.0)
61
- loofah (2.2.3)
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.1)
68
- mini_portile2 (2.4.0)
69
- minitest (5.10.1)
70
- nio4r (1.2.1)
71
- nokogiri (1.9.1)
72
- mini_portile2 (~> 2.4.0)
73
- rack (2.0.6)
74
- rack-test (0.6.3)
75
- rack (>= 1.0)
76
- rails (5.0.0)
77
- actioncable (= 5.0.0)
78
- actionmailer (= 5.0.0)
79
- actionpack (= 5.0.0)
80
- actionview (= 5.0.0)
81
- activejob (= 5.0.0)
82
- activemodel (= 5.0.0)
83
- activerecord (= 5.0.0)
84
- activesupport (= 5.0.0)
85
- bundler (>= 1.3.0, < 2.0)
86
- railties (= 5.0.0)
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.0.4)
92
- loofah (~> 2.2, >= 2.2.2)
93
- railties (5.0.0)
94
- actionpack (= 5.0.0)
95
- activesupport (= 5.0.0)
96
- method_source
97
- rake (>= 0.8.7)
98
- thor (>= 0.18.1, < 2.0)
99
- rake (12.3.2)
100
- sprockets (3.7.2)
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.3.13)
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.3)
115
-
116
- PLATFORMS
117
- ruby
118
-
119
- DEPENDENCIES
120
- appraisal
121
- minitest (= 5.10.1)
122
- minitest-spec-rails!
123
- rails (= 5.0.0)
124
- rake
125
- sqlite3
126
-
127
- BUNDLED WITH
128
- 1.17.2
@@ -1,8 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rails", "5.1.0"
6
- gem "minitest", "5.10.1"
7
-
8
- gemspec :path => "../"