appraisal2 3.1.3 → 3.1.4
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +21 -4
- data/CONTRIBUTING.md +4 -1
- data/MIT.md +21 -0
- data/README.md +1 -1
- data/lib/appraisal/version.rb +1 -1
- data/lib/appraisal2/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +13 -12
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bbe46d02bf329c467f1a1174498ac52b428836db70f3b481d9895ab72eae831f
|
|
4
|
+
data.tar.gz: 478f076b882e497da7a709180c9a27bf70c9c90a0e34d3dad12a4281b49cd520
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bad0a5d468f7d046063b315d70f74f43e751c21a4b2316d599d6904f1e3f77b783f2bafd7d4cef9946fcb3e5757a359b1b6af431b9e99681042064d82d13d8c0
|
|
7
|
+
data.tar.gz: 2ee5da066917eaf2862328952292e79b76483befd7fcad754945dec312fa988e77813dd93e2ad7812a27489239e95da13be1159f7e068468c0c699c560398550
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -22,11 +22,26 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
22
22
|
|
|
23
23
|
### Changed
|
|
24
24
|
|
|
25
|
+
### Deprecated
|
|
26
|
+
|
|
27
|
+
### Removed
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
### Security
|
|
32
|
+
|
|
33
|
+
## [3.1.4] - 2026-07-01
|
|
34
|
+
|
|
35
|
+
- TAG: [v3.1.4][3.1.4t]
|
|
36
|
+
- COVERAGE: 90.28% -- 827/916 lines in 29 files
|
|
37
|
+
- BRANCH COVERAGE: 79.31% -- 161/203 branches in 29 files
|
|
38
|
+
- 42.25% documented
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
25
42
|
- Clarified README Bundler path caching guidance and removed hard paragraph
|
|
26
43
|
wraps from prose.
|
|
27
44
|
|
|
28
|
-
### Deprecated
|
|
29
|
-
|
|
30
45
|
### Removed
|
|
31
46
|
|
|
32
47
|
- Removed unused legacy root and fixture Gemfiles for Ruby 1.8, 2.0, and 2.1.
|
|
@@ -40,7 +55,7 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
40
55
|
- Disabled `ruby/setup-ruby` Bundler caching in the JRuby 9.3 workflow and
|
|
41
56
|
run a serial Bundler install to avoid legacy fallback index failures.
|
|
42
57
|
|
|
43
|
-
|
|
58
|
+
- Package configured license files in gem release file lists.
|
|
44
59
|
|
|
45
60
|
## [3.1.3] - 2026-06-22
|
|
46
61
|
|
|
@@ -414,7 +429,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
414
429
|
- code coverage tracked with Coveralls, QLTY.sh, and the kettle-soup-cover gem
|
|
415
430
|
- other minor fixes and improvements
|
|
416
431
|
|
|
417
|
-
[Unreleased]: https://github.com/appraisal-rb/appraisal2/compare/v3.1.
|
|
432
|
+
[Unreleased]: https://github.com/appraisal-rb/appraisal2/compare/v3.1.4...HEAD
|
|
433
|
+
[3.1.4]: https://github.com/appraisal-rb/appraisal2/compare/v3.1.3...v3.1.4
|
|
434
|
+
[3.1.4t]: https://github.com/appraisal-rb/appraisal2/releases/tag/v3.1.4
|
|
418
435
|
[3.1.3]: https://github.com/appraisal-rb/appraisal2/compare/v3.1.2...v3.1.3
|
|
419
436
|
[3.1.3t]: https://github.com/appraisal-rb/appraisal2/releases/tag/v3.1.3
|
|
420
437
|
[3.1.2]: https://github.com/appraisal-rb/appraisal2/compare/v3.1.1...v3.1.2
|
data/CONTRIBUTING.md
CHANGED
|
@@ -131,9 +131,12 @@ toolchain, and it may be higher than the gemspec runtime floor.
|
|
|
131
131
|
They are created and updated with the commands:
|
|
132
132
|
|
|
133
133
|
```console
|
|
134
|
-
bin/rake appraisal:
|
|
134
|
+
bin/rake appraisal:generate
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
+
Use `bin/rake appraisal:update` when you intentionally need to resolve fresh
|
|
138
|
+
appraisal locks.
|
|
139
|
+
|
|
137
140
|
If you need to reset all gemfiles/*.gemfile.lock files:
|
|
138
141
|
|
|
139
142
|
```console
|
data/MIT.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
See [LICENSE.md](LICENSE.md) for the copyright notice.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -752,7 +752,7 @@ Thanks for RTFM. ☺️
|
|
|
752
752
|
[📌gitmoji]: https://gitmoji.dev
|
|
753
753
|
[📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
754
754
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
755
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.
|
|
755
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.916-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
756
756
|
[🔐security]: https://github.com/appraisal-rb/appraisal2/blob/main/SECURITY.md
|
|
757
757
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
758
758
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
data/lib/appraisal/version.rb
CHANGED
data/lib/appraisal2/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appraisal2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joe Ferris
|
|
@@ -124,7 +124,7 @@ dependencies:
|
|
|
124
124
|
version: '2.2'
|
|
125
125
|
- - ">="
|
|
126
126
|
- !ruby/object:Gem::Version
|
|
127
|
-
version: 2.2.
|
|
127
|
+
version: 2.2.25
|
|
128
128
|
type: :development
|
|
129
129
|
prerelease: false
|
|
130
130
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -134,7 +134,7 @@ dependencies:
|
|
|
134
134
|
version: '2.2'
|
|
135
135
|
- - ">="
|
|
136
136
|
- !ruby/object:Gem::Version
|
|
137
|
-
version: 2.2.
|
|
137
|
+
version: 2.2.25
|
|
138
138
|
- !ruby/object:Gem::Dependency
|
|
139
139
|
name: bundler-audit
|
|
140
140
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -178,7 +178,7 @@ dependencies:
|
|
|
178
178
|
version: '2.0'
|
|
179
179
|
- - ">="
|
|
180
180
|
- !ruby/object:Gem::Version
|
|
181
|
-
version: 2.0.
|
|
181
|
+
version: 2.0.9
|
|
182
182
|
type: :development
|
|
183
183
|
prerelease: false
|
|
184
184
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -188,7 +188,7 @@ dependencies:
|
|
|
188
188
|
version: '2.0'
|
|
189
189
|
- - ">="
|
|
190
190
|
- !ruby/object:Gem::Version
|
|
191
|
-
version: 2.0.
|
|
191
|
+
version: 2.0.9
|
|
192
192
|
- !ruby/object:Gem::Dependency
|
|
193
193
|
name: turbo_tests2
|
|
194
194
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -198,7 +198,7 @@ dependencies:
|
|
|
198
198
|
version: '3.1'
|
|
199
199
|
- - ">="
|
|
200
200
|
- !ruby/object:Gem::Version
|
|
201
|
-
version: 3.1.
|
|
201
|
+
version: 3.1.5
|
|
202
202
|
type: :development
|
|
203
203
|
prerelease: false
|
|
204
204
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -208,7 +208,7 @@ dependencies:
|
|
|
208
208
|
version: '3.1'
|
|
209
209
|
- - ">="
|
|
210
210
|
- !ruby/object:Gem::Version
|
|
211
|
-
version: 3.1.
|
|
211
|
+
version: 3.1.5
|
|
212
212
|
- !ruby/object:Gem::Dependency
|
|
213
213
|
name: ruby-progressbar
|
|
214
214
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -232,7 +232,7 @@ dependencies:
|
|
|
232
232
|
version: '1.0'
|
|
233
233
|
- - ">="
|
|
234
234
|
- !ruby/object:Gem::Version
|
|
235
|
-
version: 1.0.
|
|
235
|
+
version: 1.0.4
|
|
236
236
|
type: :development
|
|
237
237
|
prerelease: false
|
|
238
238
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -242,7 +242,7 @@ dependencies:
|
|
|
242
242
|
version: '1.0'
|
|
243
243
|
- - ">="
|
|
244
244
|
- !ruby/object:Gem::Version
|
|
245
|
-
version: 1.0.
|
|
245
|
+
version: 1.0.4
|
|
246
246
|
- !ruby/object:Gem::Dependency
|
|
247
247
|
name: gitmoji-regex
|
|
248
248
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -410,6 +410,7 @@ files:
|
|
|
410
410
|
- CONTRIBUTING.md
|
|
411
411
|
- FUNDING.md
|
|
412
412
|
- LICENSE.md
|
|
413
|
+
- MIT.md
|
|
413
414
|
- README.md
|
|
414
415
|
- RUBOCOP.md
|
|
415
416
|
- SECURITY.md
|
|
@@ -451,10 +452,10 @@ licenses:
|
|
|
451
452
|
- MIT
|
|
452
453
|
metadata:
|
|
453
454
|
homepage_uri: https://appraisal2.galtzo.com
|
|
454
|
-
source_code_uri: https://github.com/appraisal-rb/appraisal2/tree/v3.1.
|
|
455
|
-
changelog_uri: https://github.com/appraisal-rb/appraisal2/blob/v3.1.
|
|
455
|
+
source_code_uri: https://github.com/appraisal-rb/appraisal2/tree/v3.1.4
|
|
456
|
+
changelog_uri: https://github.com/appraisal-rb/appraisal2/blob/v3.1.4/CHANGELOG.md
|
|
456
457
|
bug_tracker_uri: https://github.com/appraisal-rb/appraisal2/issues
|
|
457
|
-
documentation_uri: https://www.rubydoc.info/gems/appraisal2/3.1.
|
|
458
|
+
documentation_uri: https://www.rubydoc.info/gems/appraisal2/3.1.4
|
|
458
459
|
funding_uri: https://github.com/sponsors/pboling
|
|
459
460
|
wiki_uri: https://github.com/appraisal-rb/appraisal2/wiki
|
|
460
461
|
news_uri: https://www.railsbling.com/tags/appraisal2
|
metadata.gz.sig
CHANGED
|
Binary file
|