rspec-stubbed_env 1.0.7 → 1.0.9
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 +59 -1
- data/lib/rspec/stubbed_env/version.rb +4 -1
- data.tar.gz.sig +0 -0
- metadata +32 -12
- metadata.gz.sig +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c89f4a8dc903a681604ed5b7b26a81844ea55d2ff1bdcafe05045e6307f4fb3
|
|
4
|
+
data.tar.gz: a30c44efb2abd8ef01ce29435db1f6c351e8dda229adae1645ab9d2dc4cfc2bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6835023154023d5994bea05a8d7ea3a9240b3a22c8a16a740d44851d1dc04d061af4f268d5cfacf578b8f1f9ad5f77628e911c8d27f590a7d240cea24d323fe7
|
|
7
|
+
data.tar.gz: 82692dec6c983c490da33ff9b98645d136eb65b092b0b2c2bd98e1fa42f768773d15d7863597b39b08ce1c006aae076bc6d6b37978c3181c7ce7c9b4741f7a39
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,60 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [1.0.9] - 2026-07-28
|
|
34
|
+
|
|
35
|
+
- TAG: [v1.0.9][1.0.9t]
|
|
36
|
+
- COVERAGE: 100.00% -- 95/95 lines in 5 files
|
|
37
|
+
- BRANCH COVERAGE: 100.00% -- 19/19 branches in 5 files
|
|
38
|
+
- 100.00% documented
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- Documentation linting now has its generated `yard-lint` dependency and severity config available in the local bundle.
|
|
43
|
+
|
|
44
|
+
- kettle-jem-template-20260726-001 - Projects now include YARD lint
|
|
45
|
+
configuration and documentation dependencies so documentation issues fail
|
|
46
|
+
before generated docs are refreshed.
|
|
47
|
+
|
|
48
|
+
- kettle-jem-template-20260727-001 - Spec harness documentation now lists the
|
|
49
|
+
RSpec helpers provided by `kettle-test`.
|
|
50
|
+
|
|
51
|
+
### Changed
|
|
52
|
+
|
|
53
|
+
- kettle-jem-template-20260728-001 - Generated Ruby workflows now use clearer
|
|
54
|
+
setup-ruby-flash planning and can prepare appraisal-only jobs without
|
|
55
|
+
installing the main Gemfile bundle.
|
|
56
|
+
|
|
57
|
+
### Fixed
|
|
58
|
+
|
|
59
|
+
- kettle-jem-template-20260726-002 - Generated version files now document their
|
|
60
|
+
version namespace and constants, reducing warning-only YARD lint output.
|
|
61
|
+
|
|
62
|
+
- kettle-jem-template-20260726-003 - Coverage upload steps now treat Coveralls,
|
|
63
|
+
QLTY, and Codecov as optional, so provider outages do not fail CI when local
|
|
64
|
+
coverage thresholds still pass.
|
|
65
|
+
- kettle-jem-template-20260728-002 - Generated RuboCop configs now ignore the
|
|
66
|
+
same `gemfiles/vendor/bundle` tree as `.gitignore`, so vendored dependency
|
|
67
|
+
installs are not reported as project lint debt.
|
|
68
|
+
- kettle-jem-template-20260728-003 - Generated dep-heads workflows now run
|
|
69
|
+
TruffleRuby jobs with current RubyGems and Bundler, avoiding setup failures
|
|
70
|
+
before the test suite starts.
|
|
71
|
+
|
|
72
|
+
## [1.0.8] - 2026-07-25
|
|
73
|
+
|
|
74
|
+
- TAG: [v1.0.8][1.0.8t]
|
|
75
|
+
- COVERAGE: 100.00% -- 95/95 lines in 5 files
|
|
76
|
+
- BRANCH COVERAGE: 100.00% -- 19/19 branches in 5 files
|
|
77
|
+
- 80.00% documented
|
|
78
|
+
|
|
79
|
+
### Changed
|
|
80
|
+
|
|
81
|
+
- kettle-jem-template-20260725-002 - Generated gemspec templates now include
|
|
82
|
+
`anonymous_loader` as a development dependency, and version specs use it to
|
|
83
|
+
execute generated `version.rb` files for coverage without redefining package
|
|
84
|
+
constants. Managed version specs are removed when `version_gem` is disabled
|
|
85
|
+
or incompatible with the project's runtime Ruby floor.
|
|
86
|
+
|
|
33
87
|
## [1.0.7] - 2026-07-25
|
|
34
88
|
|
|
35
89
|
- TAG: [v1.0.7][1.0.7t]
|
|
@@ -198,7 +252,11 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
198
252
|
[@darhazer]: https://github.com/darhazer
|
|
199
253
|
[@hosamaly]: https://github.com/hosamaly
|
|
200
254
|
|
|
201
|
-
[Unreleased]: https://github.com/galtzo-floss/rspec-stubbed_env/compare/v1.0.
|
|
255
|
+
[Unreleased]: https://github.com/galtzo-floss/rspec-stubbed_env/compare/v1.0.9...HEAD
|
|
256
|
+
[1.0.9]: https://github.com/galtzo-floss/rspec-stubbed_env/compare/v1.0.8...v1.0.9
|
|
257
|
+
[1.0.9t]: https://github.com/galtzo-floss/rspec-stubbed_env/releases/tag/v1.0.9
|
|
258
|
+
[1.0.8]: https://github.com/galtzo-floss/rspec-stubbed_env/compare/v1.0.7...v1.0.8
|
|
259
|
+
[1.0.8t]: https://github.com/galtzo-floss/rspec-stubbed_env/releases/tag/v1.0.8
|
|
202
260
|
[1.0.7]: https://github.com/galtzo-floss/rspec-stubbed_env/compare/v1.0.6...v1.0.7
|
|
203
261
|
[1.0.7t]: https://github.com/galtzo-floss/rspec-stubbed_env/releases/tag/v1.0.7
|
|
204
262
|
[1.0.6]: https://github.com/galtzo-floss/rspec-stubbed_env/compare/v1.0.5...v1.0.6
|
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
module RSpec
|
|
4
4
|
module StubbedEnv
|
|
5
|
+
# Version namespace for this gem.
|
|
5
6
|
module Version
|
|
6
|
-
|
|
7
|
+
# Current gem version.
|
|
8
|
+
VERSION = "1.0.9"
|
|
7
9
|
end
|
|
10
|
+
# Current gem version exposed at the traditional constant location.
|
|
8
11
|
VERSION = Version::VERSION # Traditional Constant Location
|
|
9
12
|
end
|
|
10
13
|
end
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-stubbed_env
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Boling
|
|
@@ -106,6 +106,26 @@ dependencies:
|
|
|
106
106
|
- - ">="
|
|
107
107
|
- !ruby/object:Gem::Version
|
|
108
108
|
version: 1.0.4
|
|
109
|
+
- !ruby/object:Gem::Dependency
|
|
110
|
+
name: anonymous_loader
|
|
111
|
+
requirement: !ruby/object:Gem::Requirement
|
|
112
|
+
requirements:
|
|
113
|
+
- - "~>"
|
|
114
|
+
- !ruby/object:Gem::Version
|
|
115
|
+
version: '0.1'
|
|
116
|
+
- - ">="
|
|
117
|
+
- !ruby/object:Gem::Version
|
|
118
|
+
version: 0.1.3
|
|
119
|
+
type: :development
|
|
120
|
+
prerelease: false
|
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
122
|
+
requirements:
|
|
123
|
+
- - "~>"
|
|
124
|
+
- !ruby/object:Gem::Version
|
|
125
|
+
version: '0.1'
|
|
126
|
+
- - ">="
|
|
127
|
+
- !ruby/object:Gem::Version
|
|
128
|
+
version: 0.1.3
|
|
109
129
|
- !ruby/object:Gem::Dependency
|
|
110
130
|
name: appraisal2
|
|
111
131
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -135,7 +155,7 @@ dependencies:
|
|
|
135
155
|
version: '2.0'
|
|
136
156
|
- - ">="
|
|
137
157
|
- !ruby/object:Gem::Version
|
|
138
|
-
version: 2.0.
|
|
158
|
+
version: 2.0.16
|
|
139
159
|
type: :development
|
|
140
160
|
prerelease: false
|
|
141
161
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -145,7 +165,7 @@ dependencies:
|
|
|
145
165
|
version: '2.0'
|
|
146
166
|
- - ">="
|
|
147
167
|
- !ruby/object:Gem::Version
|
|
148
|
-
version: 2.0.
|
|
168
|
+
version: 2.0.16
|
|
149
169
|
- !ruby/object:Gem::Dependency
|
|
150
170
|
name: turbo_tests2
|
|
151
171
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -155,7 +175,7 @@ dependencies:
|
|
|
155
175
|
version: '3.2'
|
|
156
176
|
- - ">="
|
|
157
177
|
- !ruby/object:Gem::Version
|
|
158
|
-
version: 3.2.
|
|
178
|
+
version: 3.2.3
|
|
159
179
|
type: :development
|
|
160
180
|
prerelease: false
|
|
161
181
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -165,7 +185,7 @@ dependencies:
|
|
|
165
185
|
version: '3.2'
|
|
166
186
|
- - ">="
|
|
167
187
|
- !ruby/object:Gem::Version
|
|
168
|
-
version: 3.2.
|
|
188
|
+
version: 3.2.3
|
|
169
189
|
- !ruby/object:Gem::Dependency
|
|
170
190
|
name: ruby-progressbar
|
|
171
191
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -189,7 +209,7 @@ dependencies:
|
|
|
189
209
|
version: '1.0'
|
|
190
210
|
- - ">="
|
|
191
211
|
- !ruby/object:Gem::Version
|
|
192
|
-
version: 1.0.
|
|
212
|
+
version: 1.0.7
|
|
193
213
|
type: :development
|
|
194
214
|
prerelease: false
|
|
195
215
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -199,7 +219,7 @@ dependencies:
|
|
|
199
219
|
version: '1.0'
|
|
200
220
|
- - ">="
|
|
201
221
|
- !ruby/object:Gem::Version
|
|
202
|
-
version: 1.0.
|
|
222
|
+
version: 1.0.7
|
|
203
223
|
- !ruby/object:Gem::Dependency
|
|
204
224
|
name: gitmoji-regex
|
|
205
225
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -209,7 +229,7 @@ dependencies:
|
|
|
209
229
|
version: '2.0'
|
|
210
230
|
- - ">="
|
|
211
231
|
- !ruby/object:Gem::Version
|
|
212
|
-
version: 2.0.
|
|
232
|
+
version: 2.0.7
|
|
213
233
|
type: :development
|
|
214
234
|
prerelease: false
|
|
215
235
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -219,7 +239,7 @@ dependencies:
|
|
|
219
239
|
version: '2.0'
|
|
220
240
|
- - ">="
|
|
221
241
|
- !ruby/object:Gem::Version
|
|
222
|
-
version: 2.0.
|
|
242
|
+
version: 2.0.7
|
|
223
243
|
- !ruby/object:Gem::Dependency
|
|
224
244
|
name: rspec
|
|
225
245
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -284,10 +304,10 @@ licenses:
|
|
|
284
304
|
- MIT
|
|
285
305
|
metadata:
|
|
286
306
|
homepage_uri: https://rspec-stubbed-env.galtzo.com/
|
|
287
|
-
source_code_uri: https://github.com/galtzo-floss/rspec-stubbed_env/tree/v1.0.
|
|
288
|
-
changelog_uri: https://github.com/galtzo-floss/rspec-stubbed_env/blob/v1.0.
|
|
307
|
+
source_code_uri: https://github.com/galtzo-floss/rspec-stubbed_env/tree/v1.0.9
|
|
308
|
+
changelog_uri: https://github.com/galtzo-floss/rspec-stubbed_env/blob/v1.0.9/CHANGELOG.md
|
|
289
309
|
bug_tracker_uri: https://github.com/galtzo-floss/rspec-stubbed_env/issues
|
|
290
|
-
documentation_uri: https://www.rubydoc.info/gems/rspec-stubbed_env/1.0.
|
|
310
|
+
documentation_uri: https://www.rubydoc.info/gems/rspec-stubbed_env/1.0.9
|
|
291
311
|
funding_uri: https://github.com/sponsors/pboling
|
|
292
312
|
wiki_uri: https://github.com/galtzo-floss/rspec-stubbed_env/wiki
|
|
293
313
|
news_uri: https://www.railsbling.com/tags/rspec-stubbed_env
|
metadata.gz.sig
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
�q���^2 6M*�*HT�abt�k�Z4Pe��<�@v��w8�>�=����R���d�
|
|
2
|
+
�9��'u�}φV،3�K_�{כ�ڱ :V�
|
|
3
|
+
$�qz��)r�.̨)GvM����A�n�N���H��Ӡ��oJ�oH�c���O���q�ΌG��
|
|
4
|
+
�8�]$���Fa�m�*
|