appraisal2 3.1.1 → 3.1.2
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 +25 -2
- data/LICENSE.md +1 -0
- data/README.md +6 -4
- data/lib/appraisal/bundler_dsl.rb +5 -3
- data/lib/appraisal/version.rb +1 -1
- data/lib/appraisal2/version.rb +1 -1
- data/lib/appraisal2.rb +0 -5
- data.tar.gz.sig +0 -0
- metadata +14 -36
- 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: 3d481193174340b780721b42c394394bf59ec02b500763672941eb04b201ae7e
|
|
4
|
+
data.tar.gz: ad5c78564e102538e77bf3ba913488eff00617bc89cb8bf23e8bd13d2a3f6ad7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: acabfebc3adbd64a88022766260dd2684a0f12fbe3fc1f1b29f0f26d7754ffd16b7aa72ef718d3613601b67b3e37f0a10cc20c2063da9b37725066558e4aebbd
|
|
7
|
+
data.tar.gz: 1e715cd4474da8c8956fa1b6f6aeb542fe6c010c959f891f0bb85d62bc2bd6b757f27e6d4cfd0537062e4f563ee7111e53d8cb12fd2d48f2b9216ed770f1884c
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,27 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [3.1.2] - 2026-06-11
|
|
34
|
+
|
|
35
|
+
- TAG: [v3.1.2][3.1.2t]
|
|
36
|
+
- COVERAGE: 90.21% -- 820/909 lines in 29 files
|
|
37
|
+
- BRANCH COVERAGE: 80.71% -- 159/197 branches in 29 files
|
|
38
|
+
- 42.25% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- Support for Bundlers cooldown feature (#31)
|
|
43
|
+
- Added released `gem_mine` fixture-scaffold dependency wiring for acceptance
|
|
44
|
+
specs that need temporary throwaway gems.
|
|
45
|
+
|
|
46
|
+
### Fixed
|
|
47
|
+
|
|
48
|
+
- Cleaned up per-process scaffold roots after acceptance spec runs so generated
|
|
49
|
+
dummy gem projects do not accumulate under `tmp/spec-process-*`.
|
|
50
|
+
- Isolated Git bare-repository config for acceptance specs so Bundler can use
|
|
51
|
+
its per-process local git cache on machines with stricter global Git config.
|
|
52
|
+
- Corrected the gemspec public author email to use `floss@galtzo.com`.
|
|
53
|
+
|
|
33
54
|
## [3.1.1] - 2026-06-06
|
|
34
55
|
|
|
35
56
|
- TAG: [v3.1.1][3.1.1t]
|
|
@@ -354,14 +375,16 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
354
375
|
- Initial release as a hard fork of [appraisal v3.0.0.rc1](https://github.com/thoughtbot/appraisal/commit/602cdd9b5f8cb8f36992733422f69312b172f427) with many improvements - by @pboling
|
|
355
376
|
- support for `eval_gemfile`
|
|
356
377
|
- support for Ruby 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6 (all removed, or planned-to-be, in thoughtbot's `appraisal`)
|
|
357
|
-
- NOTE: The [setup-ruby GH Action](https://github.com/ruby/setup-ruby) only ships support for Ruby 2.3+, so older Rubies are no longer tested in CI. Compatibility is assumed thanks to [ only ships support for Ruby 2.3+, so older Rubies are no longer tested in CI. Compatibility is assumed thanks to [](https://github.com/rubocop-lts/rubocop-lts) enforcing the syntax for the oldest supported Ruby, which is Ruby v1.8. File a bug if you find something broken.
|
|
358
379
|
- Support for JRuby 9.4+
|
|
359
380
|
- updated and improved documentation
|
|
360
381
|
- maintainability tracked with QLTY.sh and the reek gem
|
|
361
382
|
- code coverage tracked with Coveralls, QLTY.sh, and the kettle-soup-cover gem
|
|
362
383
|
- other minor fixes and improvements
|
|
363
384
|
|
|
364
|
-
[Unreleased]: https://github.com/appraisal-rb/appraisal2/compare/v3.1.
|
|
385
|
+
[Unreleased]: https://github.com/appraisal-rb/appraisal2/compare/v3.1.2...HEAD
|
|
386
|
+
[3.1.2]: https://github.com/appraisal-rb/appraisal2/compare/v3.1.1...v3.1.2
|
|
387
|
+
[3.1.2t]: https://github.com/appraisal-rb/appraisal2/releases/tag/v3.1.2
|
|
365
388
|
[3.1.1]: https://github.com/appraisal-rb/appraisal2/compare/v3.1.0...v3.1.1
|
|
366
389
|
[3.1.1t]: https://github.com/appraisal-rb/appraisal2/releases/tag/v3.1.1
|
|
367
390
|
[3.1.0]: https://github.com/appraisal-rb/appraisal2/compare/v3.0.9...v3.1.0
|
data/LICENSE.md
CHANGED
data/README.md
CHANGED
|
@@ -62,7 +62,7 @@ Appraisal2 adds:
|
|
|
62
62
|
| Works with MRI Ruby 4 | [![Ruby 4.0 Compat][💎ruby-4.0i]][🚎11-c-wf] [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
|
|
63
63
|
| Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎ruby-3.0-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎ruby-3.1-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎ruby-3.2-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎ruby-3.3-wf] [![Ruby 3.4 Compat][💎ruby-3.4i]][🚎ruby-3.4-wf]|
|
|
64
64
|
| Works with MRI Ruby 2 | ![Ruby 2.0 Compat][💎ruby-2.0i] ![Ruby 2.1 Compat][💎ruby-2.1i] ![Ruby 2.2 Compat][💎ruby-2.2i] ![Ruby 2.3 Compat][💎ruby-2.3i] <br/> [![Ruby 2.4 Compat][💎ruby-2.4i]][🚎ruby-2.4-wf] [![Ruby 2.5 Compat][💎ruby-2.5i]][🚎ruby-2.5-wf] [![Ruby 2.6 Compat][💎ruby-2.6i]][🚎ruby-2.6-wf] [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎ruby-2.7-wf]|
|
|
65
|
-
| Works with MRI Ruby 1 | ![Ruby 1.9 Compat][💎ruby-1.9i]|
|
|
65
|
+
| Works with MRI Ruby 1 | ![Ruby 1.8 Compat][💎ruby-1.8i] ![Ruby 1.9 Compat][💎ruby-1.9i]|
|
|
66
66
|
| Support & Community | [![Join Me on Daily.dev's RubyFriends][✉️ruby-friends-img]][✉️ruby-friends] [![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite] [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork] [![Get help from me on Codementor][👨🏼🏫expsup-codementor-img]][👨🏼🏫expsup-codementor] |
|
|
67
67
|
| Source | [![Source on GitLab.com][📜src-gl-img]][📜src-gl] [![Source on CodeBerg.org][📜src-cb-img]][📜src-cb] [![Source on Github.com][📜src-gh-img]][📜src-gh] [![The best SHA: dQw4w9WgXcQ!][🧮kloc-img]][🧮kloc] |
|
|
68
68
|
| Documentation | [![Current release on RubyDoc.info][📜docs-cr-rd-img]][🚎yard-current] [![YARD on Galtzo.com][📜docs-head-rd-img]][🚎yard-head] [![Maintainer Blog][🚂maint-blog-img]][🚂maint-blog] [![GitLab Wiki][📜gl-wiki-img]][📜gl-wiki] [![GitHub Wiki][📜gh-wiki-img]][📜gh-wiki] |
|
|
@@ -574,6 +574,7 @@ See [LICENSE.md][📄license] for the official copyright notice.
|
|
|
574
574
|
- Copyright (c) 2024 Joe Sharp
|
|
575
575
|
- Copyright (c) 2024 Sebastian Cohnen
|
|
576
576
|
- Copyright (c) 2024 Yevhenii Ponomarenko
|
|
577
|
+
- Copyright (c) 2026 Richard Kramer
|
|
577
578
|
|
|
578
579
|
</details>
|
|
579
580
|
|
|
@@ -737,6 +738,7 @@ Thanks for RTFM. ☺️
|
|
|
737
738
|
[🚎14-🔓️-wfi]: https://github.com/appraisal-rb/appraisal2/actions/workflows/unlocked_deps.yml/badge.svg
|
|
738
739
|
[🚎15-🪪-wf]: https://github.com/appraisal-rb/appraisal2/actions/workflows/license-eye.yml
|
|
739
740
|
[🚎15-🪪-wfi]: https://github.com/appraisal-rb/appraisal2/actions/workflows/license-eye.yml/badge.svg
|
|
741
|
+
[💎ruby-1.8i]: https://img.shields.io/badge/Ruby-1.8_(%F0%9F%9A%ABCI)-AABBCC?style=for-the-badge&logo=ruby&logoColor=white
|
|
740
742
|
[💎ruby-1.9i]: https://img.shields.io/badge/Ruby-1.9_(%F0%9F%9A%ABCI)-AABBCC?style=for-the-badge&logo=ruby&logoColor=white
|
|
741
743
|
[💎ruby-2.0i]: https://img.shields.io/badge/Ruby-2.0_(%F0%9F%9A%ABCI)-AABBCC?style=for-the-badge&logo=ruby&logoColor=white
|
|
742
744
|
[💎ruby-2.1i]: https://img.shields.io/badge/Ruby-2.1_(%F0%9F%9A%ABCI)-AABBCC?style=for-the-badge&logo=ruby&logoColor=white
|
|
@@ -791,7 +793,7 @@ Thanks for RTFM. ☺️
|
|
|
791
793
|
[📌gitmoji]: https://gitmoji.dev
|
|
792
794
|
[📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
|
|
793
795
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
794
|
-
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.
|
|
796
|
+
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.909-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
|
795
797
|
[🔐security]: https://github.com/appraisal-rb/appraisal2/blob/main/SECURITY.md
|
|
796
798
|
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
|
797
799
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
|
@@ -799,7 +801,7 @@ Thanks for RTFM. ☺️
|
|
|
799
801
|
[📄license-ref]: MIT.md
|
|
800
802
|
[📄license-img]: https://img.shields.io/badge/License-MIT-259D6C.svg
|
|
801
803
|
[📄license-compat]: https://www.apache.org/legal/resolved.html#category-a
|
|
802
|
-
[📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A
|
|
804
|
+
[📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A-%E2%9C%93-259D6C.svg?style=flat&logo=Apache
|
|
803
805
|
|
|
804
806
|
[📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
|
|
805
807
|
[📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
|
|
@@ -819,7 +821,7 @@ Thanks for RTFM. ☺️
|
|
|
819
821
|
| Package | appraisal2 |
|
|
820
822
|
| Description | 🔍️ Appraisal2 integrates with bundler and rake to test your library against different versions of dependencies in repeatable scenarios called "appraisals." |
|
|
821
823
|
| Homepage | https://github.com/appraisal-rb/appraisal2 |
|
|
822
|
-
| Source | https://github.com/appraisal-rb/appraisal2/tree/v3.1.
|
|
824
|
+
| Source | https://github.com/appraisal-rb/appraisal2/tree/v3.1.1 |
|
|
823
825
|
| License | `MIT` |
|
|
824
826
|
| Funding | https://github.com/sponsors/pboling, https://issuehunt.io/u/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/appraisal-rb, https://patreon.com/galtzo, https://polar.sh/pboling, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/appraisal2, https://www.buymeacoffee.com/pboling |
|
|
825
827
|
<!-- kettle-jem:metadata:end -->
|
|
@@ -76,13 +76,13 @@ module Appraisal
|
|
|
76
76
|
|
|
77
77
|
alias_method :platform, :platforms
|
|
78
78
|
|
|
79
|
-
def source(source, &block)
|
|
79
|
+
def source(source, options = {}, &block)
|
|
80
80
|
if block_given?
|
|
81
81
|
@source_blocks[source] ||=
|
|
82
82
|
Source.new(source).tap { |g| g.git_sources = @git_sources.dup }
|
|
83
83
|
@source_blocks[source].run(&block)
|
|
84
84
|
else
|
|
85
|
-
@sources << source
|
|
85
|
+
@sources << [source, options]
|
|
86
86
|
end
|
|
87
87
|
end
|
|
88
88
|
|
|
@@ -131,7 +131,9 @@ module Appraisal
|
|
|
131
131
|
alias_method :eval_gemfile_entry_for_dup, :eval_gemfile_entry
|
|
132
132
|
|
|
133
133
|
def source_entry
|
|
134
|
-
@sources.uniq.map
|
|
134
|
+
@sources.uniq.map do |(src, opts)|
|
|
135
|
+
opts.empty? ? "source #{src.inspect}" : "source #{src.inspect}, #{Utils.format_string(opts)}"
|
|
136
|
+
end.join("\n")
|
|
135
137
|
end
|
|
136
138
|
|
|
137
139
|
alias_method :source_entry_for_dup, :source_entry
|
data/lib/appraisal/version.rb
CHANGED
data/lib/appraisal2/version.rb
CHANGED
data/lib/appraisal2.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Peter Boling
|
|
8
|
-
- Joe Ferris
|
|
9
|
-
- Prem Sichanugrist
|
|
7
|
+
- Peter H. Boling
|
|
10
8
|
bindir: exe
|
|
11
9
|
cert_chain:
|
|
12
10
|
- |
|
|
@@ -81,46 +79,26 @@ dependencies:
|
|
|
81
79
|
- - ">="
|
|
82
80
|
- !ruby/object:Gem::Version
|
|
83
81
|
version: '0.14'
|
|
84
|
-
- !ruby/object:Gem::Dependency
|
|
85
|
-
name: version_gem
|
|
86
|
-
requirement: !ruby/object:Gem::Requirement
|
|
87
|
-
requirements:
|
|
88
|
-
- - "~>"
|
|
89
|
-
- !ruby/object:Gem::Version
|
|
90
|
-
version: '1.1'
|
|
91
|
-
- - ">="
|
|
92
|
-
- !ruby/object:Gem::Version
|
|
93
|
-
version: 1.1.10
|
|
94
|
-
type: :runtime
|
|
95
|
-
prerelease: false
|
|
96
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
97
|
-
requirements:
|
|
98
|
-
- - "~>"
|
|
99
|
-
- !ruby/object:Gem::Version
|
|
100
|
-
version: '1.1'
|
|
101
|
-
- - ">="
|
|
102
|
-
- !ruby/object:Gem::Version
|
|
103
|
-
version: 1.1.10
|
|
104
82
|
- !ruby/object:Gem::Dependency
|
|
105
83
|
name: kettle-dev
|
|
106
84
|
requirement: !ruby/object:Gem::Requirement
|
|
107
85
|
requirements:
|
|
108
86
|
- - "~>"
|
|
109
87
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: '2.
|
|
88
|
+
version: '2.2'
|
|
111
89
|
- - ">="
|
|
112
90
|
- !ruby/object:Gem::Version
|
|
113
|
-
version: 2.
|
|
91
|
+
version: 2.2.3
|
|
114
92
|
type: :development
|
|
115
93
|
prerelease: false
|
|
116
94
|
version_requirements: !ruby/object:Gem::Requirement
|
|
117
95
|
requirements:
|
|
118
96
|
- - "~>"
|
|
119
97
|
- !ruby/object:Gem::Version
|
|
120
|
-
version: '2.
|
|
98
|
+
version: '2.2'
|
|
121
99
|
- - ">="
|
|
122
100
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: 2.
|
|
101
|
+
version: 2.2.3
|
|
124
102
|
- !ruby/object:Gem::Dependency
|
|
125
103
|
name: bundler-audit
|
|
126
104
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -164,7 +142,7 @@ dependencies:
|
|
|
164
142
|
version: '2.0'
|
|
165
143
|
- - ">="
|
|
166
144
|
- !ruby/object:Gem::Version
|
|
167
|
-
version: 2.0.
|
|
145
|
+
version: 2.0.5
|
|
168
146
|
type: :development
|
|
169
147
|
prerelease: false
|
|
170
148
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -174,7 +152,7 @@ dependencies:
|
|
|
174
152
|
version: '2.0'
|
|
175
153
|
- - ">="
|
|
176
154
|
- !ruby/object:Gem::Version
|
|
177
|
-
version: 2.0.
|
|
155
|
+
version: 2.0.5
|
|
178
156
|
- !ruby/object:Gem::Dependency
|
|
179
157
|
name: turbo_tests2
|
|
180
158
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -184,7 +162,7 @@ dependencies:
|
|
|
184
162
|
version: '3.1'
|
|
185
163
|
- - ">="
|
|
186
164
|
- !ruby/object:Gem::Version
|
|
187
|
-
version: 3.1.
|
|
165
|
+
version: 3.1.2
|
|
188
166
|
type: :development
|
|
189
167
|
prerelease: false
|
|
190
168
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -194,7 +172,7 @@ dependencies:
|
|
|
194
172
|
version: '3.1'
|
|
195
173
|
- - ">="
|
|
196
174
|
- !ruby/object:Gem::Version
|
|
197
|
-
version: 3.1.
|
|
175
|
+
version: 3.1.2
|
|
198
176
|
- !ruby/object:Gem::Dependency
|
|
199
177
|
name: ruby-progressbar
|
|
200
178
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -375,7 +353,7 @@ description: "\U0001F50D️ Appraisal2 integrates with bundler and rake to test
|
|
|
375
353
|
library against different versions of dependencies in repeatable scenarios called
|
|
376
354
|
\"appraisals.\""
|
|
377
355
|
email:
|
|
378
|
-
- galtzo
|
|
356
|
+
- floss@galtzo.com
|
|
379
357
|
executables:
|
|
380
358
|
- appraisal
|
|
381
359
|
extensions: []
|
|
@@ -437,10 +415,10 @@ licenses:
|
|
|
437
415
|
- MIT
|
|
438
416
|
metadata:
|
|
439
417
|
homepage_uri: https://appraisal2.galtzo.com
|
|
440
|
-
source_code_uri: https://github.com/appraisal-rb/appraisal2/tree/v3.1.
|
|
441
|
-
changelog_uri: https://github.com/appraisal-rb/appraisal2/blob/v3.1.
|
|
418
|
+
source_code_uri: https://github.com/appraisal-rb/appraisal2/tree/v3.1.2
|
|
419
|
+
changelog_uri: https://github.com/appraisal-rb/appraisal2/blob/v3.1.2/CHANGELOG.md
|
|
442
420
|
bug_tracker_uri: https://github.com/appraisal-rb/appraisal2/issues
|
|
443
|
-
documentation_uri: https://www.rubydoc.info/gems/appraisal2/3.1.
|
|
421
|
+
documentation_uri: https://www.rubydoc.info/gems/appraisal2/3.1.2
|
|
444
422
|
funding_uri: https://github.com/sponsors/pboling
|
|
445
423
|
wiki_uri: https://github.com/appraisal-rb/appraisal2/wiki
|
|
446
424
|
news_uri: https://www.railsbling.com/tags/appraisal2
|
metadata.gz.sig
CHANGED
|
Binary file
|