minitest-rails 7.1.0 → 7.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 12dd18b8d1565450f168529368e96087db538ed383b72d0f246c6c6303587cd5
4
- data.tar.gz: b1887d75856ca2908921d78060b0eb08a7b822d4c848ee9b86b07b82e34d08f2
3
+ metadata.gz: 366bdf646c76a474e4a6e32bc9bc9194b83ed5f62b428ab97dc8db42f2d3e343
4
+ data.tar.gz: f31b60001d5ec8228e1fb013b2a7dccfd728ab8b9c043c34703c2bb557a8c9a4
5
5
  SHA512:
6
- metadata.gz: cb9f831b0073ce58154763cf71b9f2f2ea60be3b150395ab13ad3ce1230424b2facd00e4e165c6505f41dae738190846d257feed1838608a374383ed13971ea0
7
- data.tar.gz: ae95f363639484e1669464fc46fafd690d76cfb4db18274c72c609f5eaae4b7d63e828ec7a2519bb10be988626b9ea1365410a86e54918e770a7a3b5fec3aea9
6
+ metadata.gz: 055fb9425c3e51c50906ae6265e929d0526cdc88e17183125f08e7f641793706a234ea594cfea1a9017c0346858315bd89c213c53c3a7b29372e5b14e49ca3a1
7
+ data.tar.gz: 72abc22aee14f721e025977babfd28f1448b5ee531df93c0bf00c8a0ef08598753e6cbefb6076eb7cbabd385d46cdfb67f31aab10ec585f0a3ecab811afa082c
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2019 Mike Moore
1
+ Copyright (c) 2023 Mike Moore
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  Minitest integration for Rails 7.1
4
4
 
5
- [![CI](https://github.com/blowmage/minitest-rails/actions/workflows/ci.yml/badge.svg)](https://github.com/blowmage/minitest-rails/actions/workflows/ci.yml)
6
- [![Code Climate](https://codeclimate.com/github/blowmage/minitest-rails.png)](https://codeclimate.com/github/blowmage/minitest-rails)
5
+ [![CI](https://github.com/minitest/minitest-rails/actions/workflows/ci.yml/badge.svg)](https://github.com/minitest/minitest-rails/actions/workflows/ci.yml)
6
+ [![CodeQL](https://github.com/minitest/minitest-rails/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/minitest/minitest-rails/actions/workflows/github-code-scanning/codeql)
7
7
 
8
8
  ## Install
9
9
 
@@ -22,51 +22,28 @@ Create a new rails app:
22
22
  ### Choosing a version
23
23
 
24
24
  This gem follows the versioning of Rails.
25
- If you are running Rails 7.1, specify the corresponding 7.1 release in the Gemfile.
26
- For example:
25
+ For example, if you are using Rails 7.1 you will specify:
27
26
 
28
27
  ```ruby
29
28
  gem "minitest-rails", "~> 7.1.0"
30
29
  ```
31
30
 
32
- If you are running Rails 7.0, specify the corresponding 7.0 release in the Gemfile.
33
- For example, if you are using Rails 6.1 you will specify:
31
+ If you are running Rails 7.0 you will specify:
34
32
 
35
33
  ```ruby
36
34
  gem "minitest-rails", "~> 7.0.0"
37
35
  ```
38
36
 
39
- If you are running Rails 6.x, specify the corresponding 6.x release in the Gemfile.
40
- For example, if you are using Rails 6.1 you will specify:
37
+ If you are running Rails 6.1 you will specify:
41
38
 
42
39
  ```ruby
43
40
  gem "minitest-rails", "~> 6.1.0"
44
41
  ```
45
42
 
46
- If you are running Rails 5.x, specify the corresponding 5.x release in the Gemfile.
47
- For example, if you are using Rails 5.2 you will specify:
43
+ If you are running Rails 6.0 you will specify:
48
44
 
49
45
  ```ruby
50
- gem "minitest-rails", "~> 5.2.0"
51
- ```
52
-
53
- Or, if you prefer to run the previous release for Rails 5.x, specify the 3.x release in the Gemfile:
54
-
55
- ```ruby
56
- gem "minitest-rails", "~> 3.0"
57
- ```
58
-
59
- If you are running Rails 4.1 or 4.2, specify the 2.x release in the Gemfile:
60
-
61
- ```ruby
62
- gem "minitest-rails", "~> 2.0"
63
- ```
64
-
65
- If you are running Rails 4.0 or earlier, you really need to upgrade.
66
- But if you are you need to specify the 1.x release in the Gemfile:
67
-
68
- ```ruby
69
- gem "minitest-rails", "~> 1.0"
46
+ gem "minitest-rails", "~> 6.0.0"
70
47
  ```
71
48
 
72
49
  ### Installing
@@ -107,13 +84,21 @@ To run your tests use the `rails test` that ship with rails.
107
84
 
108
85
  ## Get Involved
109
86
 
110
- Join the mailing list to get help or offer suggestions.
87
+ Join the Github discussions to get help or offer suggestions:
88
+
89
+ https://github.com/minitest/minitest-rails/discussions
90
+
91
+ Report bugs by opening an issue:
92
+
93
+ https://github.com/minitest/minitest-rails/issues
94
+
95
+ Contribute changes by creating a pull request:
111
96
 
112
- https://groups.google.com/group/minitest-rails
97
+ https://github.com/minitest/minitest-rails/pulls
113
98
 
114
99
  ## License
115
100
 
116
- Copyright (c) 2019 Mike Moore
101
+ Copyright (c) 2023 Mike Moore
117
102
 
118
103
  Permission is hereby granted, free of charge, to any person obtaining
119
104
  a copy of this software and associated documentation files (the
@@ -1,5 +1,5 @@
1
1
  module Minitest
2
2
  module Rails
3
- VERSION = "7.1.0".freeze
3
+ VERSION = "7.1.1".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.0
4
+ version: 7.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-27 00:00:00.000000000 Z
11
+ date: 2024-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -28,16 +28,22 @@ dependencies:
28
28
  name: railties
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: 7.1.0
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: 8.0.0
34
37
  type: :runtime
35
38
  prerelease: false
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
38
- - - "~>"
41
+ - - ">="
39
42
  - !ruby/object:Gem::Version
40
43
  version: 7.1.0
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: 8.0.0
41
47
  - !ruby/object:Gem::Dependency
42
48
  name: minitest-autotest
43
49
  requirement: !ruby/object:Gem::Requirement
@@ -198,7 +204,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
204
  - !ruby/object:Gem::Version
199
205
  version: '0'
200
206
  requirements: []
201
- rubygems_version: 3.4.12
207
+ rubygems_version: 3.5.13
202
208
  signing_key:
203
209
  specification_version: 4
204
210
  summary: Minitest integration for Rails