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 +4 -4
- data/LICENSE +1 -1
- data/README.md +18 -33
- data/lib/minitest/rails/version.rb +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 366bdf646c76a474e4a6e32bc9bc9194b83ed5f62b428ab97dc8db42f2d3e343
|
4
|
+
data.tar.gz: f31b60001d5ec8228e1fb013b2a7dccfd728ab8b9c043c34703c2bb557a8c9a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 055fb9425c3e51c50906ae6265e929d0526cdc88e17183125f08e7f641793706a234ea594cfea1a9017c0346858315bd89c213c53c3a7b29372e5b14e49ca3a1
|
7
|
+
data.tar.gz: 72abc22aee14f721e025977babfd28f1448b5ee531df93c0bf00c8a0ef08598753e6cbefb6076eb7cbabd385d46cdfb67f31aab10ec585f0a3ecab811afa082c
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
Minitest integration for Rails 7.1
|
4
4
|
|
5
|
-
[](https://github.com/minitest/minitest-rails/actions/workflows/ci.yml)
|
6
|
+
[](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
|
-
|
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
|
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.
|
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
|
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", "~>
|
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
|
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://
|
97
|
+
https://github.com/minitest/minitest-rails/pulls
|
113
98
|
|
114
99
|
## License
|
115
100
|
|
116
|
-
Copyright (c)
|
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
|
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.
|
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:
|
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.
|
207
|
+
rubygems_version: 3.5.13
|
202
208
|
signing_key:
|
203
209
|
specification_version: 4
|
204
210
|
summary: Minitest integration for Rails
|