rspec-stubbed_env 1.0.2 → 1.0.3
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 +18 -2
- data/CONTRIBUTING.md +4 -5
- data/README.md +112 -85
- data/lib/rspec/stubbed_env/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +73 -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: 36081772c8bd8d534cc57bc89a2b36155025d52abae3272bf1380cce535eb57a
|
4
|
+
data.tar.gz: c40a86df31ff7699c5b25d7cf1b9cc1af7a35e628c3a32add7b46cb1a530fc9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b10c1215e2b9df1e269149e5f4f79ef05d9b5c05b91aac863fdb12e234c76d0443273539c2336130c1e29b2bf48b306c2078577abf50fdd0abc9ed3f19ea4f94
|
7
|
+
data.tar.gz: ce260912dcec7003d2c4bce48af60aaf57f8fc7031814ceba4966d46765aa27a244af4e16d8f92dac3c2d484bb84b9bb049647196f303e93642bf267aef5d7bf
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -7,8 +7,22 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
7
7
|
## [Unreleased]
|
8
8
|
### Added
|
9
9
|
### Changed
|
10
|
-
###
|
10
|
+
### Deprecated
|
11
11
|
### Removed
|
12
|
+
### Fixed
|
13
|
+
### Security
|
14
|
+
|
15
|
+
## [1.0.3] - 2025-07-28 ([tag][1.0.3t])
|
16
|
+
COVERAGE: 100.00% -- 73/73 lines in 5 files
|
17
|
+
BRANCH COVERAGE: 100.00% -- 10/10 branches in 5 files
|
18
|
+
- 85.71% documented
|
19
|
+
### Added
|
20
|
+
- More documentation
|
21
|
+
- Tracking maintainability and coverage with QLTY.sh
|
22
|
+
- Documentation site
|
23
|
+
- https://rspec-stubbed-env.galtzo.com
|
24
|
+
### Changed
|
25
|
+
- gemspec metadata
|
12
26
|
|
13
27
|
## [1.0.2] - 2025-05-06 ([tag][1.0.2t])
|
14
28
|
- COVERAGE: 100.00% -- 73/73 lines in 5 files
|
@@ -57,7 +71,9 @@ and this project adheres to [Semantic Versioning v2](https://semver.org/spec/v2.
|
|
57
71
|
[@darhazer]: https://github.com/darhazer
|
58
72
|
[@hosamaly]: https://github.com/hosamaly
|
59
73
|
|
60
|
-
[Unreleased]: https://gitlab.com/pboling/rspec-stubbed_env/-/compare/v1.0.
|
74
|
+
[Unreleased]: https://gitlab.com/pboling/rspec-stubbed_env/-/compare/v1.0.3...main
|
75
|
+
[1.0.3]: https://gitlab.com/pboling/rspec-stubbed_env/-/compare/v1.0.2...v1.0.3
|
76
|
+
[1.0.3t]: https://gitlab.com/pboling/rspec-stubbed_env/-/tags/v1.0.3
|
61
77
|
[1.0.2]: https://gitlab.com/pboling/rspec-stubbed_env/-/compare/v1.0.1...v1.0.2
|
62
78
|
[1.0.2t]: https://gitlab.com/pboling/rspec-stubbed_env/-/tags/v1.0.2
|
63
79
|
[1.0.1]: https://gitlab.com/pboling/rspec-stubbed_env/-/compare/v1.0.0...v1.0.1
|
data/CONTRIBUTING.md
CHANGED
@@ -11,6 +11,8 @@ We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you m
|
|
11
11
|
|
12
12
|
## You can help!
|
13
13
|
|
14
|
+
Take a look at the `reek` list which is the file called `REEK` and find something to improve.
|
15
|
+
|
14
16
|
Simply follow these instructions:
|
15
17
|
|
16
18
|
1. Fork the repository
|
@@ -23,16 +25,13 @@ Simply follow these instructions:
|
|
23
25
|
|
24
26
|
## Appraisals
|
25
27
|
|
26
|
-
From time to time the
|
28
|
+
From time to time the Appraisal2 gemfiles in `gemfiles/` will need to be updated.
|
27
29
|
They are created and updated with the commands:
|
28
30
|
|
29
|
-
NOTE: We run on a [fork][🚎appraisal-fork] of Appraisal.
|
30
|
-
|
31
|
-
Please upvote the PR for `eval_gemfile` [support][🚎appraisal-eval-gemfile-pr]
|
32
|
-
|
33
31
|
```shell
|
34
32
|
BUNDLE_GEMFILE=Appraisal.root.gemfile bundle
|
35
33
|
BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal update
|
34
|
+
bundle exec rake rubocop_gradual:autocorrect
|
36
35
|
```
|
37
36
|
|
38
37
|
When adding an appraisal to CI check the [runner tool cache][🏃♂️runner-tool-cache] to see which runner to use.
|
data/README.md
CHANGED
@@ -1,36 +1,34 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
[![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf]
|
13
|
-
[![CI Current][🚎11-c-wfi]][🚎11-c-wf]
|
14
|
-
[![CI Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf]
|
15
|
-
[![CI JRuby][🚎10-j-wfi]][🚎10-j-wf]
|
16
|
-
[![CI Supported][🚎6-s-wfi]][🚎6-s-wf]
|
17
|
-
[![CI Legacy][🚎4-lg-wfi]][🚎4-lg-wf]
|
18
|
-
[![CI Unsupported][🚎7-us-wfi]][🚎7-us-wf]
|
19
|
-
[![CI Ancient][🚎1-an-wfi]][🚎1-an-wf]
|
20
|
-
[![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf]
|
21
|
-
[![CI Style][🚎5-st-wfi]][🚎5-st-wf]
|
1
|
+
<p align="center">
|
2
|
+
<a href="https://discord.gg/3qme4XHNKN" target="_blank" rel="noopener">
|
3
|
+
<img width="120px" src="https://github.com/galtzo-floss/shields-badge/raw/main/docs/images/logo/galtzo-floss-logos-original.svg?raw=true" alt="Galtzo.com Logo by Aboling0, CC BY-SA 4.0">
|
4
|
+
</a>
|
5
|
+
<a href="https://www.ruby-lang.org/" target="_blank" rel="noopener">
|
6
|
+
<img width="120px" src="https://github.com/galtzo-floss/shields-badge/raw/main/docs/images/logo/ruby-logo-198px.svg?raw=true" alt="Yukihiro Matsumoto, Ruby Visual Identity Team, CC BY-SA 2.5">
|
7
|
+
</a>
|
8
|
+
</p>
|
9
|
+
|
10
|
+
# 🫥 RSpec::StubbedEnv
|
11
|
+
|
12
|
+
[![Version][👽versioni]][👽version] [![License: MIT][📄license-img]][📄license-ref] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![Open Source Helpers][👽oss-helpi]][👽oss-help] [![Depfu][🔑depfui♻️]][🔑depfu] [![CodeCov Test Coverage][🔑codecovi♻️]][🔑codecov] [![Coveralls Test Coverage][🔑coveralls-img]][🔑coveralls] [![CodeCov Test Coverage][🔑codecovi♻️]][🔑codecov] [![QLTY Test Coverage][🔑qlty-covi]][🔑qlty-cov] [![QLTY Maintainability][🔑qlty-mnti]][🔑qlty-mnt] [![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf] [![CI Current][🚎11-c-wfi]][🚎11-c-wf] [![CI Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-wf] [![CI Supported][🚎6-s-wfi]][🚎6-s-wf] [![CI Legacy][🚎4-lg-wfi]][🚎4-lg-wf] [![CI Unsupported][🚎7-us-wfi]][🚎7-us-wf] [![CI Ancient][🚎1-an-wfi]][🚎1-an-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf]
|
22
13
|
|
23
14
|
---
|
24
15
|
|
25
|
-
[![Liberapay
|
26
|
-
[![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor]
|
27
|
-
[![Buy me a coffee][🖇buyme-small-img]][🖇buyme]
|
28
|
-
[![Donate on Polar][🖇polar-img]][🖇polar]
|
29
|
-
[![Donate to my FLOSS or refugee efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
|
30
|
-
[![Donate to my FLOSS or refugee efforts using Patreon][🖇patreon-img]][🖇patreon]
|
16
|
+
[![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS or refugee efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS or refugee efforts using Patreon][🖇patreon-img]][🖇patreon]
|
31
17
|
|
32
|
-
ENV stubbing
|
33
|
-
|
18
|
+
An `ENV` stubbing / hiding library for sophisticated RSpec test suites.
|
19
|
+
|
20
|
+
| Federated [DVCS][💎d-in-dvcs] Repository | Status | Issues | PRs | Wiki | CI | Discussions |
|
21
|
+
|--------------------------------------------------------|-------------------------------------------------------------------|---------------------------|--------------------------|---------------------------|--------------------------|------------------------------|
|
22
|
+
| 🧪 [pboling/rspec-stubbed_env on GitLab][📜src-gl] | The Truth | [💚][🤝gl-issues] | [💚][🤝gl-pulls] | [💚][📜wiki] | 🏀 Tiny Matrix | ➖ |
|
23
|
+
| 🧊 [pboling/rspec-stubbed_env on CodeBerg][📜src-cb] | An Ethical Mirror ([Donate][🤝cb-donate]) | ➖ | [💚][🤝cb-pulls] | ➖ | ⭕️ No Matrix | ➖ |
|
24
|
+
| 🐙 [pboling/rspec-stubbed_env on GitHub][📜src-gh] | A Dirty Mirror | [💚][🤝gh-issues] | [💚][🤝gh-pulls] | ➖ | 💯 Full Matrix | [💚][gh-discussions] |
|
25
|
+
| 🎮️ [Discord Server][✉️discord-invite] | [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite] | [Let's][✉️discord-invite] | [talk][✉️discord-invite] | [about][✉️discord-invite] | [this][✉️discord-invite] | [library!][✉️discord-invite] |
|
26
|
+
|
27
|
+
[gh-discussions]: https://github.com/pboling/rspec-stubbed_env/discussions
|
28
|
+
|
29
|
+
* ENV stubbing and hiding via shared contexts for more powerful tests
|
30
|
+
* ENV hiding via `hide_env("FOO")` was added in v1.0.2
|
31
|
+
* No need to add `dotenv` just for the spec suite
|
34
32
|
|
35
33
|
```ruby
|
36
34
|
describe "my stubbed test" do
|
@@ -63,6 +61,8 @@ end
|
|
63
61
|
|
64
62
|
This gem has no runtime dependencies.
|
65
63
|
|
64
|
+
## 💡 Info you can shake a stick at
|
65
|
+
|
66
66
|
| Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
|
67
67
|
|-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
68
68
|
| Works with JRuby | [![JRuby 9.1 Compat][💎jruby-9.1i]][🚎10-j-wf] [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎10-j-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎10-j-wf] [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎10-j-wf] [![JRuby 10.0 Compat][💎jruby-c-i]][🚎11-c-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf] |
|
@@ -70,12 +70,13 @@ This gem has no runtime dependencies.
|
|
70
70
|
| Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎4-lg-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎6-s-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎6-s-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎6-s-wf] [![Ruby 3.4 Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf] |
|
71
71
|
| Works with MRI Ruby 2 | [![Ruby 2.3 Compat][💎ruby-2.3i]][🚎1-an-wf] [![Ruby 2.4 Compat][💎ruby-2.4i]][🚎1-an-wf] [![Ruby 2.5 Compat][💎ruby-2.5i]][🚎1-an-wf] [![Ruby 2.6 Compat][💎ruby-2.6i]][🚎7-us-wf] [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎7-us-wf] |
|
72
72
|
| 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] |
|
73
|
-
| Documentation
|
74
|
-
| Compliance
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
73
|
+
| Documentation | [![Current release on RubyDoc.info][📜docs-cr-rd-img]][🚎yard-current] [![YARD on Galtzo.com][📜docs-head-rd-img]][🚎yard-head] [![BDFL Blog][🚂bdfl-blog-img]][🚂bdfl-blog] [![Wiki][📜wiki-img]][📜wiki] |
|
74
|
+
| Compliance | [![License: MIT][📄license-img]][📄license-ref] [![📄ilo-declaration-img]][📄ilo-declaration] [![Security Policy][🔐security-img]][🔐security] [![Contributor Covenant 2.1][🪇conduct-img]][🪇conduct] [![SemVer 2.0.0][📌semver-img]][📌semver] |
|
75
|
+
| Style | [![Enforced Code Style Linter][💎rlts-img]][💎rlts] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog] [![Gitmoji Commits][📌gitmoji-img]][📌gitmoji] |
|
76
|
+
| Support | [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite] [![Get help from me on Upwork][👨🏼🏫expsup-upwork-img]][👨🏼🏫expsup-upwork] [![Get help from me on Codementor][👨🏼🏫expsup-codementor-img]][👨🏼🏫expsup-codementor] |
|
77
|
+
| Enterprise Support | [![Get help from me on Tidelift][🏙️entsup-tidelift-img]][🏙️entsup-tidelift]<br/>💡Subscribe for support guarantees covering _all_ FLOSS dependencies!<br/>💡Tidelift is part of [Sonar][🏙️entsup-tidelift-sonar]!<br/>💡Tidelift pays maintainers to maintain the software you depend on!<br/>📊`@`Pointy Haired Boss: An [enterprise support][🏙️entsup-tidelift] subscription is "[never gonna let you down][🧮kloc]", and *supports* open source maintainers! |
|
78
|
+
| Comrade BDFL 🎖️ | [![Follow Me on LinkedIn][💖🖇linkedin-img]][💖🖇linkedin] [![Follow Me on Ruby.Social][💖🐘ruby-mast-img]][💖🐘ruby-mast] [![Follow Me on Bluesky][💖🦋bluesky-img]][💖🦋bluesky] [![Contact BDFL][🚂bdfl-contact-img]][🚂bdfl-contact] [![My technical writing][💖💁🏼♂️devto-img]][💖💁🏼♂️devto] |
|
79
|
+
| `...` 💖 | [![Find Me on WellFound:][💖✌️wellfound-img]][💖✌️wellfound] [![Find Me on CrunchBase][💖💲crunchbase-img]][💖💲crunchbase] [![My LinkTree][💖🌳linktree-img]][💖🌳linktree] [![More About Me][💖💁🏼♂️aboutme-img]][💖💁🏼♂️aboutme] [🧊][💖🧊berg] [🐙][💖🐙hub] [🛖][💖🛖hut] [🧪][💖🧪lab] |
|
79
80
|
|
80
81
|
## ✨ Installation
|
81
82
|
|
@@ -89,7 +90,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
89
90
|
|
90
91
|
### 🔒 Secure Installation
|
91
92
|
|
92
|
-
`rspec-stubbed_env` is cryptographically signed, and
|
93
|
+
`rspec-stubbed_env` is cryptographically signed, and has verifiable [SHA-256 and SHA-512][💎SHA_checksums] checksums by
|
93
94
|
[stone_checksums][💎stone_checksums]. Be sure the gem you install hasn’t been tampered with
|
94
95
|
by following the instructions below.
|
95
96
|
|
@@ -285,6 +286,8 @@ See [CONTRIBUTING.md][🤝contributing] for more detailed instructions.
|
|
285
286
|
|
286
287
|
[![Coverage Graph][🔑codecov-g♻️]][🔑codecov]
|
287
288
|
|
289
|
+
[![Coveralls Test Coverage][🔑coveralls-img]][🔑coveralls]
|
290
|
+
|
288
291
|
### 🪇 Code of Conduct
|
289
292
|
|
290
293
|
Everyone interacting in this project's codebases, issue trackers,
|
@@ -296,7 +299,7 @@ chat rooms and mailing lists is expected to follow the [![Contributor Covenant 2
|
|
296
299
|
|
297
300
|
Made with [contributors-img][🖐contrib-rocks].
|
298
301
|
|
299
|
-
Also see GitLab Contributors: [https://gitlab.com/pboling/rspec-stubbed_env/-/graphs/
|
302
|
+
Also see GitLab Contributors: [https://gitlab.com/pboling/rspec-stubbed_env/-/graphs/main][🚎contributors-gl]
|
300
303
|
|
301
304
|
## ⭐️ Star History
|
302
305
|
|
@@ -353,27 +356,50 @@ See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright
|
|
353
356
|
|
354
357
|
### © Copyright
|
355
358
|
|
356
|
-
<
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
</
|
359
|
+
<ul>
|
360
|
+
<li>
|
361
|
+
Copyright (c) 2018-2020, 2024-2025 Peter H. Boling, of
|
362
|
+
<a href="https://discord.gg/3qme4XHNKN">
|
363
|
+
Galtzo.com
|
364
|
+
<picture>
|
365
|
+
<img src="https://github.com/galtzo-floss/shields-badge/raw/main/docs/images/logo/galtzo-floss-logos-wordless.svg?raw=true" alt="Galtzo.com Logo by Aboling0, CC BY-SA 4.0" width="24">
|
366
|
+
</picture>
|
367
|
+
</a>, and rspec-stubbed_env contributors
|
368
|
+
</li>
|
369
|
+
</ul>
|
365
370
|
|
366
371
|
## 🤑 One more thing
|
367
372
|
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
or one of the others at the head of this README.
|
373
|
+
Having arrived at the bottom of the page, please endure a final supplication.
|
374
|
+
The primary maintainer of this gem, Peter Boling, wants
|
375
|
+
Ruby to be a great place for people to solve problems, big and small.
|
376
|
+
Please consider supporting his efforts via the giant yellow link below,
|
377
|
+
or one of smaller ones, depending on button size preference.
|
374
378
|
|
375
379
|
[![Buy me a latte][🖇buyme-img]][🖇buyme]
|
376
380
|
|
381
|
+
[![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS or refugee efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS or refugee efforts using Patreon][🖇patreon-img]][🖇patreon]
|
382
|
+
|
383
|
+
P.S. If you need help️, or want to say thanks, 👇 Join the Discord.
|
384
|
+
|
385
|
+
[![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite]
|
386
|
+
|
387
|
+
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay
|
388
|
+
[⛳liberapay]: https://liberapay.com/pboling/donate
|
389
|
+
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
390
|
+
[🖇sponsor]: https://github.com/sponsors/pboling
|
391
|
+
[🖇polar-img]: https://img.shields.io/badge/polar-donate-yellow.svg
|
392
|
+
[🖇polar]: https://polar.sh/pboling
|
393
|
+
[🖇kofi-img]: https://img.shields.io/badge/a_more_different_coffee-✓-yellow.svg
|
394
|
+
[🖇kofi]: https://ko-fi.com/O5O86SNP4
|
395
|
+
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-yellow.svg
|
396
|
+
[🖇patreon]: https://patreon.com/galtzo
|
397
|
+
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-✓-yellow.svg?style=flat
|
398
|
+
[🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
|
399
|
+
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
400
|
+
[✉️discord-invite]: https://discord.gg/3qme4XHNKN
|
401
|
+
[✉️discord-invite-img]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge
|
402
|
+
|
377
403
|
[✇bundle-group-pattern]: https://gist.github.com/pboling/4564780
|
378
404
|
[⛳️gem-namespace]: https://github.com/pboling/rspec-stubbed_env
|
379
405
|
[⛳️namespace-img]: https://img.shields.io/badge/namespace-RSpec%3A%3AStubbedEnv-brightgreen.svg?style=flat&logo=ruby&logoColor=white
|
@@ -419,7 +445,7 @@ or one of the others at the head of this README.
|
|
419
445
|
[📜src-gh-img]: https://img.shields.io/badge/GitHub-238636?style=for-the-badge&logo=Github&logoColor=green
|
420
446
|
[📜src-gh]: https://github.com/pboling/rspec-stubbed_env
|
421
447
|
[📜docs-cr-rd-img]: https://img.shields.io/badge/RubyDoc-Current_Release-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
|
422
|
-
[📜docs-head-rd-img]: https://img.shields.io/badge/
|
448
|
+
[📜docs-head-rd-img]: https://img.shields.io/badge/YARD_on_Galtzo.com-HEAD-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
|
423
449
|
[📜wiki]: https://gitlab.com/pboling/rspec-stubbed_env/-/wikis/home
|
424
450
|
[📜wiki-img]: https://img.shields.io/badge/wiki-examples-943CD2.svg?style=for-the-badge&logo=Wiki&logoColor=white
|
425
451
|
[👽dl-rank]: https://rubygems.org/gems/rspec-stubbed_env
|
@@ -428,14 +454,14 @@ or one of the others at the head of this README.
|
|
428
454
|
[👽oss-helpi]: https://www.codetriage.com/pboling/rspec-stubbed_env/badges/users.svg
|
429
455
|
[👽version]: https://rubygems.org/gems/rspec-stubbed_env
|
430
456
|
[👽versioni]: https://img.shields.io/gem/v/rspec-stubbed_env.svg
|
431
|
-
[🔑
|
432
|
-
[🔑
|
433
|
-
[🔑
|
434
|
-
[🔑
|
457
|
+
[🔑qlty-mnt]: https://qlty.sh/gh/pboling/projects/rspec-stubbed_env
|
458
|
+
[🔑qlty-mnti]: https://qlty.sh/gh/pboling/projects/rspec-stubbed_env/maintainability.svg
|
459
|
+
[🔑qlty-cov]: https://qlty.sh/gh/pboling/projects/rspec-stubbed_env/metrics/code?sort=coverageRating
|
460
|
+
[🔑qlty-covi]: https://qlty.sh/gh/pboling/projects/rspec-stubbed_env/coverage.svg
|
435
461
|
[🔑codecov]: https://codecov.io/gh/pboling/rspec-stubbed_env
|
436
|
-
[🔑codecovi♻️]: https://codecov.io/gh/pboling/rspec-stubbed_env/branch/
|
437
|
-
[🔑coveralls]: https://coveralls.io/github/pboling/rspec-stubbed_env?branch=
|
438
|
-
[🔑coveralls-img]: https://coveralls.io/repos/github/pboling/rspec-stubbed_env/badge.svg?branch=
|
462
|
+
[🔑codecovi♻️]: https://codecov.io/gh/pboling/rspec-stubbed_env/branch/main/graph/badge.svg?token=Ad3ets1psE
|
463
|
+
[🔑coveralls]: https://coveralls.io/github/pboling/rspec-stubbed_env?branch=main
|
464
|
+
[🔑coveralls-img]: https://coveralls.io/repos/github/pboling/rspec-stubbed_env/badge.svg?branch=main
|
439
465
|
[🔑depfu]: https://depfu.com/github/pboling/rspec-stubbed_env?project_id=5884
|
440
466
|
[🔑depfui♻️]: https://badges.depfu.com/badges/a48948dd503f23a440f2c17910563f43/count.svg
|
441
467
|
[🖐codeQL]: https://github.com/pboling/rspec-stubbed_env/security/code-scanning
|
@@ -462,19 +488,10 @@ or one of the others at the head of this README.
|
|
462
488
|
[🚎10-j-wfi]: https://github.com/pboling/rspec-stubbed_env/actions/workflows/jruby.yml/badge.svg
|
463
489
|
[🚎11-c-wf]: https://github.com/pboling/rspec-stubbed_env/actions/workflows/current.yml
|
464
490
|
[🚎11-c-wfi]: https://github.com/pboling/rspec-stubbed_env/actions/workflows/current.yml/badge.svg
|
465
|
-
[
|
466
|
-
[
|
467
|
-
[
|
468
|
-
[
|
469
|
-
[🖇polar-img]: https://img.shields.io/badge/polar-donate-yellow.svg
|
470
|
-
[🖇polar]: https://polar.sh/pboling
|
471
|
-
[🖇kofi-img]: https://img.shields.io/badge/a_more_different_coffee-✓-yellow.svg
|
472
|
-
[🖇kofi]: https://ko-fi.com/O5O86SNP4
|
473
|
-
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-yellow.svg
|
474
|
-
[🖇patreon]: https://patreon.com/galtzo
|
475
|
-
[🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
|
476
|
-
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
477
|
-
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-✓-yellow.svg?style=flat
|
491
|
+
[🚎13-🔒️-wf]: https://github.com/pboling/rspec-stubbed_env/actions/workflows/deps_locked.yml
|
492
|
+
[🚎13-🔒️-wfi]: https://github.com/pboling/rspec-stubbed_env/actions/workflows/deps_locked.yml/badge.svg
|
493
|
+
[🚎14-🔓️-wf]: https://github.com/pboling/rspec-stubbed_env/actions/workflows/deps_unlocked.yml
|
494
|
+
[🚎14-🔓️-wfi]: https://github.com/pboling/rspec-stubbed_env/actions/workflows/deps_unlocked.yml/badge.svg
|
478
495
|
[💎ruby-2.3i]: https://img.shields.io/badge/Ruby-2.3-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
479
496
|
[💎ruby-2.4i]: https://img.shields.io/badge/Ruby-2.4-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
480
497
|
[💎ruby-2.5i]: https://img.shields.io/badge/Ruby-2.5-DF00CA?style=for-the-badge&logo=ruby&logoColor=white
|
@@ -497,37 +514,47 @@ or one of the others at the head of this README.
|
|
497
514
|
[💎jruby-9.4i]: https://img.shields.io/badge/JRuby-9.4-FBE742?style=for-the-badge&logo=ruby&logoColor=red
|
498
515
|
[💎jruby-c-i]: https://img.shields.io/badge/JRuby-current-FBE742?style=for-the-badge&logo=ruby&logoColor=green
|
499
516
|
[💎jruby-headi]: https://img.shields.io/badge/JRuby-HEAD-FBE742?style=for-the-badge&logo=ruby&logoColor=blue
|
500
|
-
[🤝issues]: https://github.com/pboling/rspec-stubbed_env/issues
|
501
|
-
[🤝pulls]: https://github.com/pboling/rspec-stubbed_env/pulls
|
517
|
+
[🤝gh-issues]: https://github.com/pboling/rspec-stubbed_env/issues
|
518
|
+
[🤝gh-pulls]: https://github.com/pboling/rspec-stubbed_env/pulls
|
519
|
+
[🤝gh-issues]: https://github.com/pboling/rspec-stubbed_env/issues
|
520
|
+
[🤝gh-pulls]: https://github.com/pboling/rspec-stubbed_env/pulls
|
521
|
+
[🤝gl-issues]: https://gitlab.com/pboling/rspec-stubbed_env/-/issues
|
522
|
+
[🤝gl-pulls]: https://gitlab.com/pboling/rspec-stubbed_env/-/merge_requests
|
523
|
+
[🤝cb-issues]: https://codeberg.org/pboling/rspec-stubbed_env/issues
|
524
|
+
[🤝cb-pulls]: https://codeberg.org/pboling/rspec-stubbed_env/pulls
|
525
|
+
[🤝cb-donate]: https://donate.codeberg.org/
|
502
526
|
[🤝contributing]: CONTRIBUTING.md
|
503
527
|
[🔑codecov-g♻️]: https://codecov.io/gh/pboling/rspec-stubbed_env/graphs/tree.svg?token=Ad3ets1psE
|
504
528
|
[🖐contrib-rocks]: https://contrib.rocks
|
505
529
|
[🖐contributors]: https://github.com/pboling/rspec-stubbed_env/graphs/contributors
|
506
530
|
[🖐contributors-img]: https://contrib.rocks/image?repo=pboling/rspec-stubbed_env
|
507
|
-
[🚎contributors-gl]: https://gitlab.com/pboling/rspec-stubbed_env/-/graphs/
|
531
|
+
[🚎contributors-gl]: https://gitlab.com/pboling/rspec-stubbed_env/-/graphs/main
|
508
532
|
[🪇conduct]: CODE_OF_CONDUCT.md
|
509
|
-
[🪇conduct-img]: https://img.shields.io/badge/Contributor_Covenant-2.1-
|
533
|
+
[🪇conduct-img]: https://img.shields.io/badge/Contributor_Covenant-2.1-259D6C.svg
|
510
534
|
[📌pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
511
535
|
[📌semver]: https://semver.org/spec/v2.0.0.html
|
512
|
-
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-
|
536
|
+
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-259D6C.svg?style=flat
|
513
537
|
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
514
538
|
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
515
539
|
[📌changelog]: CHANGELOG.md
|
516
540
|
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
517
|
-
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-
|
541
|
+
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-34495e.svg?style=flat
|
518
542
|
[📌gitmoji]:https://gitmoji.dev
|
519
|
-
[📌gitmoji-img]:https://img.shields.io/badge/
|
543
|
+
[📌gitmoji-img]:https://img.shields.io/badge/gitmoji_commits-%20😜%20😍-34495e.svg?style=flat-square
|
520
544
|
[🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
521
545
|
[🧮kloc-img]: https://img.shields.io/badge/KLOC-0.073-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
|
522
546
|
[🔐security]: SECURITY.md
|
523
|
-
[🔐security-img]: https://img.shields.io/badge/security-policy-
|
547
|
+
[🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
|
524
548
|
[📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
|
525
549
|
[📄license]: LICENSE.txt
|
526
550
|
[📄license-ref]: https://opensource.org/licenses/MIT
|
527
|
-
[📄license-img]: https://img.shields.io/badge/License-MIT-
|
551
|
+
[📄license-img]: https://img.shields.io/badge/License-MIT-259D6C.svg
|
528
552
|
[📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
|
529
|
-
[📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-
|
530
|
-
[🚎yard-current]: http://rubydoc.info/gems/rspec-
|
531
|
-
[🚎yard-head]: https://
|
553
|
+
[📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
|
554
|
+
[🚎yard-current]: http://rubydoc.info/gems/rspec-stubbed-env
|
555
|
+
[🚎yard-head]: https://rspec-stubbed-env.galtzo.com
|
532
556
|
[💎stone_checksums]: https://github.com/pboling/stone_checksums
|
533
557
|
[💎SHA_checksums]: https://gitlab.com/pboling/rspec-stubbed_env/-/tree/main/checksums
|
558
|
+
[💎rlts]: https://github.com/rubocop-lts/rubocop-lts
|
559
|
+
[💎rlts-img]: https://img.shields.io/badge/code_style_%26_linting-rubocop--lts-34495e.svg?plastic&logo=ruby&logoColor=white
|
560
|
+
[💎d-in-dvcs]: https://railsbling.com/posts/dvcs/put_the_d_in_dvcs/
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,11 +1,11 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Liam Bennett
|
8
7
|
- Peter Boling
|
8
|
+
- Liam Bennett
|
9
9
|
bindir: exe
|
10
10
|
cert_chain:
|
11
11
|
- |
|
@@ -36,8 +36,36 @@ cert_chain:
|
|
36
36
|
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
37
37
|
L9nRqA==
|
38
38
|
-----END CERTIFICATE-----
|
39
|
-
date: 2025-
|
39
|
+
date: 2025-07-29 00:00:00.000000000 Z
|
40
40
|
dependencies:
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: stone_checksums
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: appraisal2
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.0'
|
41
69
|
- !ruby/object:Gem::Dependency
|
42
70
|
name: rspec
|
43
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,6 +94,20 @@ dependencies:
|
|
66
94
|
- - "~>"
|
67
95
|
- !ruby/object:Gem::Version
|
68
96
|
version: '1.0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec_junit_formatter
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0.6'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0.6'
|
69
111
|
- !ruby/object:Gem::Dependency
|
70
112
|
name: rake
|
71
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -85,10 +127,16 @@ description: |
|
|
85
127
|
stub_env('REDIS_URL' => 'redis://localhost:6379/')
|
86
128
|
hide_env('SESSION_SECRET')
|
87
129
|
email:
|
88
|
-
-
|
130
|
+
- floss@galtzo.com
|
89
131
|
executables: []
|
90
132
|
extensions: []
|
91
|
-
extra_rdoc_files:
|
133
|
+
extra_rdoc_files:
|
134
|
+
- CHANGELOG.md
|
135
|
+
- CODE_OF_CONDUCT.md
|
136
|
+
- CONTRIBUTING.md
|
137
|
+
- LICENSE.txt
|
138
|
+
- README.md
|
139
|
+
- SECURITY.md
|
92
140
|
files:
|
93
141
|
- CHANGELOG.md
|
94
142
|
- CODE_OF_CONDUCT.md
|
@@ -105,15 +153,28 @@ homepage: https://github.com/pboling/rspec-stubbed_env
|
|
105
153
|
licenses:
|
106
154
|
- MIT
|
107
155
|
metadata:
|
108
|
-
homepage_uri: https://
|
109
|
-
source_code_uri: https://github.com/pboling/rspec-stubbed_env/tree/v1.0.
|
110
|
-
changelog_uri: https://github.com/pboling/rspec-stubbed_env/blob/v1.0.
|
156
|
+
homepage_uri: https://rspec-stubbed-env.galtzo.com/
|
157
|
+
source_code_uri: https://github.com/pboling/rspec-stubbed_env/tree/v1.0.3
|
158
|
+
changelog_uri: https://github.com/pboling/rspec-stubbed_env/blob/v1.0.3/CHANGELOG.md
|
111
159
|
bug_tracker_uri: https://github.com/pboling/rspec-stubbed_env/issues
|
112
|
-
documentation_uri: https://www.rubydoc.info/gems/rspec-stubbed_env/1.0.
|
113
|
-
funding_uri: https://
|
160
|
+
documentation_uri: https://www.rubydoc.info/gems/rspec-stubbed_env/1.0.3
|
161
|
+
funding_uri: https://github.com/sponsors/pboling
|
114
162
|
wiki_uri: https://github.com/pboling/rspec-stubbed_env/wiki
|
163
|
+
news_uri: https://www.railsbling.com/tags/rspec-stubbed_env
|
115
164
|
rubygems_mfa_required: 'true'
|
116
|
-
rdoc_options:
|
165
|
+
rdoc_options:
|
166
|
+
- "--title"
|
167
|
+
- rspec-stubbed_env - Unobtrusively stub ENV keys and values during testing
|
168
|
+
- "--main"
|
169
|
+
- CHANGELOG.md
|
170
|
+
- CODE_OF_CONDUCT.md
|
171
|
+
- CONTRIBUTING.md
|
172
|
+
- LICENSE.txt
|
173
|
+
- README.md
|
174
|
+
- SECURITY.md
|
175
|
+
- "--line-numbers"
|
176
|
+
- "--inline-source"
|
177
|
+
- "--quiet"
|
117
178
|
require_paths:
|
118
179
|
- lib
|
119
180
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -127,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
127
188
|
- !ruby/object:Gem::Version
|
128
189
|
version: '0'
|
129
190
|
requirements: []
|
130
|
-
rubygems_version: 3.6.
|
191
|
+
rubygems_version: 3.6.9
|
131
192
|
specification_version: 4
|
132
193
|
summary: Unobtrusively stub ENV keys and values during testing
|
133
194
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|