rspec-pending_for 0.1.17 → 0.1.19
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 +37 -5
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +3 -4
- data/CONTRIBUTING.md +118 -49
- data/FUNDING.md +77 -0
- data/LICENSE.txt +1 -1
- data/README.md +539 -187
- data/REEK +0 -0
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +3 -3
- data/lib/rspec/pending_for/build.rb +69 -6
- data/lib/rspec/pending_for/version.rb +1 -1
- data/lib/rspec/pending_for.rb +20 -0
- data/sig/rspec/pending_for/build.rbs +17 -0
- data/sig/rspec/pending_for.rbs +7 -0
- data.tar.gz.sig +0 -0
- metadata +196 -48
- 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: 34ad1f42bd1f07f344a29d7bbe84e215023951abc2021c513faf3ccf3969bbd7
|
4
|
+
data.tar.gz: 94a6e6136ab460d216b0f1acbbf038990256e2c2f9050c071f0a7cd9ac04a153
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05ae213408cd139b8d3954898e2ac421e212692b13be6b94148acb1b2cb1ce6c0ac360cab47ea94f6e6bbba9c75b74d4e76fd7034fce2d8fa829123af9df50fd
|
7
|
+
data.tar.gz: '008c43e53088dd3734521cfce635ca6d285ecb818abc7e8de9139393b9204886a5503a5d4246f79b1ffdb53eaaa4b98033b77c0d79001d191dc4b3f33d21d7cf'
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -19,10 +19,38 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
19
19
|
## [Unreleased]
|
20
20
|
### Added
|
21
21
|
### Changed
|
22
|
-
###
|
22
|
+
### Deprecated
|
23
23
|
### Removed
|
24
|
+
### Fixed
|
25
|
+
### Security
|
26
|
+
|
27
|
+
## [0.1.19] - 2025-09-05
|
28
|
+
- TAG: [v0.1.19][0.1.19t]
|
29
|
+
- COVERAGE: 100.00% -- 96/96 lines in 6 files
|
30
|
+
- BRANCH COVERAGE: 100.00% -- 41/41 branches in 6 files
|
31
|
+
- 63.64% documented
|
32
|
+
### Added
|
33
|
+
- comprehensive documentation and examples in README.md
|
34
|
+
- support minor version shorthand matching
|
35
|
+
- i.e., 3.2 will skip 3.2.8
|
36
|
+
### Changed
|
37
|
+
- issues link updated to new org home: galtzo-floss/rspec-pending_for
|
38
|
+
- upgrade to kettle-dev v1.1.5 template
|
39
|
+
### Fixed
|
40
|
+
- fixed handling of version ranges in `skip_for`/`pending_for`
|
41
|
+
- release date in changelog
|
42
|
+
- truffleruby compatibility without warnings about typo in engine name
|
43
|
+
|
44
|
+
## [0.1.18] - 2025-08-24
|
45
|
+
- TAG: [v0.1.8][0.1.18t]
|
46
|
+
- COVERAGE: 100.00% -- 86/86 lines in 6 files
|
47
|
+
- BRANCH COVERAGE: 100.00% -- 33/33 branches in 6 files
|
48
|
+
- 63.64% documented
|
49
|
+
### Added
|
50
|
+
- Versions can now be ranges!
|
24
51
|
|
25
|
-
## [0.1.
|
52
|
+
## [0.1.17] - 2025-02-24
|
53
|
+
- TAG: [v0.1.7][0.1.17t]
|
26
54
|
- COVERAGE: 98.44% -- 63/64 lines in 6 files
|
27
55
|
- BRANCH COVERAGE: 94.44% -- 17/18 branches in 6 files
|
28
56
|
- 63.64% documented
|
@@ -32,6 +60,10 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
32
60
|
- Compatibility with truffleruby (maybe? not able to run it in CI yet)
|
33
61
|
- Fixed compatibility with Ruby < 2
|
34
62
|
|
35
|
-
[Unreleased]: https://github.com/
|
36
|
-
[0.1.
|
37
|
-
[0.1.
|
63
|
+
[Unreleased]: https://github.com/galtzo-floss/rspec-pending_for/compare/v0.1.19...HEAD
|
64
|
+
[0.1.19]: https://github.com/galtzo-floss/rspec-pending_for/compare/v0.1.18...v0.1.19
|
65
|
+
[0.1.19t]: https://github.com/galtzo-floss/rspec-pending_for/releases/tag/v0.1.19
|
66
|
+
[0.1.18]: https://github.com/pboling/rspec-pending_for/compare/v0.1.17...v0.1.18
|
67
|
+
[0.1.18t]: https://github.com/pboling/rspec-pending_for/tags/v0.1.18
|
68
|
+
[0.1.17]: https://github.com/pboling/rspec-pending_for/compare/v0.1.16...v0.1.17
|
69
|
+
[0.1.17t]: https://github.com/pboling/rspec-pending_for/tags/v0.1.17
|
data/CITATION.cff
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
cff-version: 1.2.0
|
2
|
+
title: rspec-pending_for
|
3
|
+
message: >-
|
4
|
+
If you use this work and you want to cite it,
|
5
|
+
then you can use the metadata from this file.
|
6
|
+
type: software
|
7
|
+
authors:
|
8
|
+
- given-names: Peter Hurn
|
9
|
+
family-names: Boling
|
10
|
+
email: peter@railsbling.com
|
11
|
+
affiliation: railsbling.com
|
12
|
+
orcid: 'https://orcid.org/0009-0008-8519-441X'
|
13
|
+
identifiers:
|
14
|
+
- type: url
|
15
|
+
value: 'https://github.com/galtzo-floss/rspec-pending_for'
|
16
|
+
description: rspec-pending_for
|
17
|
+
repository-code: 'https://github.com/galtzo-floss/rspec-pending_for'
|
18
|
+
abstract: >-
|
19
|
+
rspec-pending_for
|
20
|
+
license: See license file
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
# Contributor Covenant Code of Conduct
|
3
2
|
|
4
3
|
## Our Pledge
|
@@ -61,7 +60,7 @@ representative at an online or offline event.
|
|
61
60
|
|
62
61
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
63
62
|
reported to the community leaders responsible for enforcement at
|
64
|
-
[![Contact
|
63
|
+
[![Contact Maintainer][🚂maint-contact-img]][🚂maint-contact].
|
65
64
|
All complaints will be reviewed and investigated promptly and fairly.
|
66
65
|
|
67
66
|
All community leaders are obligated to respect the privacy and security of the
|
@@ -131,5 +130,5 @@ For answers to common questions about this code of conduct, see the FAQ at
|
|
131
130
|
[Mozilla CoC]: https://github.com/mozilla/diversity
|
132
131
|
[FAQ]: https://www.contributor-covenant.org/faq
|
133
132
|
[translations]: https://www.contributor-covenant.org/translations
|
134
|
-
[🚂
|
135
|
-
[🚂
|
133
|
+
[🚂maint-contact]: http://www.railsbling.com/contact
|
134
|
+
[🚂maint-contact-img]: https://img.shields.io/badge/Contact-Maintainer-0093D0.svg?style=flat&logo=rubyonrails&logoColor=red
|
data/CONTRIBUTING.md
CHANGED
@@ -1,41 +1,73 @@
|
|
1
1
|
# Contributing
|
2
2
|
|
3
|
-
Bug reports and pull requests are welcome on
|
4
|
-
|
3
|
+
Bug reports and pull requests are welcome on [CodeBerg][📜src-cb], [GitLab][📜src-gl], or [GitHub][📜src-gh].
|
4
|
+
This project should be a safe, welcoming space for collaboration, so contributors agree to adhere to
|
5
5
|
the [code of conduct][🤝conduct].
|
6
6
|
|
7
|
-
To submit a patch, please fork the project
|
8
|
-
Once you're happy with it send a pull request.
|
7
|
+
To submit a patch, please fork the project, create a patch with tests, and send a pull request.
|
9
8
|
|
10
|
-
|
9
|
+
Remember to [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] if you make changes.
|
11
10
|
|
12
|
-
##
|
11
|
+
## Help out!
|
13
12
|
|
14
|
-
|
13
|
+
Take a look at the `reek` list which is the file called `REEK` and find something to improve.
|
14
|
+
|
15
|
+
Follow these instructions:
|
15
16
|
|
16
17
|
1. Fork the repository
|
17
|
-
2. Create
|
18
|
+
2. Create a feature branch (`git checkout -b my-new-feature`)
|
18
19
|
3. Make some fixes.
|
19
|
-
4. Commit
|
20
|
+
4. Commit changes (`git commit -am 'Added some feature'`)
|
20
21
|
5. Push to the branch (`git push origin my-new-feature`)
|
21
22
|
6. Make sure to add tests for it. This is important, so it doesn't break in a future release.
|
22
23
|
7. Create new Pull Request.
|
23
24
|
|
24
|
-
##
|
25
|
+
## Environment Variables for Local Development
|
25
26
|
|
26
|
-
|
27
|
-
|
27
|
+
Below are the primary environment variables recognized by stone_checksums (and its integrated tools). Unless otherwise noted, set boolean values to the string "true" to enable.
|
28
|
+
|
29
|
+
General/runtime
|
30
|
+
- DEBUG: Enable extra internal logging for this library (default: false)
|
31
|
+
- REQUIRE_BENCH: Enable `require_bench` to profile requires (default: false)
|
32
|
+
- CI: When set to true, adjusts default rake tasks toward CI behavior
|
33
|
+
|
34
|
+
Coverage (kettle-soup-cover / SimpleCov)
|
35
|
+
- K_SOUP_COV_DO: Enable coverage collection (default: true in .envrc)
|
36
|
+
- K_SOUP_COV_FORMATTERS: Comma-separated list of formatters (html, xml, rcov, lcov, json, tty)
|
37
|
+
- K_SOUP_COV_MIN_LINE: Minimum line coverage threshold (integer, e.g., 100)
|
38
|
+
- K_SOUP_COV_MIN_BRANCH: Minimum branch coverage threshold (integer, e.g., 100)
|
39
|
+
- K_SOUP_COV_MIN_HARD: Fail the run if thresholds are not met (true/false)
|
40
|
+
- K_SOUP_COV_MULTI_FORMATTERS: Enable multiple formatters at once (true/false)
|
41
|
+
- K_SOUP_COV_OPEN_BIN: Path to browser opener for HTML (empty disables auto-open)
|
42
|
+
- MAX_ROWS: Limit console output rows for simplecov-console (e.g., 1)
|
43
|
+
Tip: When running a single spec file locally, you may want `K_SOUP_COV_MIN_HARD=false` to avoid failing thresholds for a partial run.
|
28
44
|
|
29
|
-
|
45
|
+
GitHub API and CI helpers
|
46
|
+
- GITHUB_TOKEN or GH_TOKEN: Token used by `ci:act` and release workflow checks to query GitHub Actions status at higher rate limits
|
30
47
|
|
31
|
-
|
48
|
+
Releasing and signing
|
49
|
+
- SKIP_GEM_SIGNING: If set, skip gem signing during build/release
|
50
|
+
- GEM_CERT_USER: Username for selecting your public cert in `certs/<USER>.pem` (defaults to $USER)
|
51
|
+
- SOURCE_DATE_EPOCH: Reproducible build timestamp. `kettle-release` will set this automatically for the session.
|
52
|
+
|
53
|
+
Git hooks and commit message helpers (exe/kettle-commit-msg)
|
54
|
+
- GIT_HOOK_BRANCH_VALIDATE: Branch name validation mode (e.g., `jira`) or `false` to disable
|
55
|
+
- GIT_HOOK_FOOTER_APPEND: Append a footer to commit messages when goalie allows (true/false)
|
56
|
+
- GIT_HOOK_FOOTER_SENTINEL: Required when footer append is enabled — a unique first-line sentinel to prevent duplicates
|
57
|
+
- GIT_HOOK_FOOTER_APPEND_DEBUG: Extra debug output in the footer template (true/false)
|
58
|
+
|
59
|
+
For a quick starting point, this repository’s `.envrc` shows sane defaults, and `.env.local` can override them locally.
|
60
|
+
|
61
|
+
## Appraisals
|
62
|
+
|
63
|
+
From time to time the [appraisal2][🚎appraisal2] gemfiles in `gemfiles/` will need to be updated.
|
64
|
+
They are created and updated with the commands:
|
32
65
|
|
33
|
-
```
|
34
|
-
|
35
|
-
BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal update
|
66
|
+
```console
|
67
|
+
bin/rake appraisal:update
|
36
68
|
```
|
37
69
|
|
38
|
-
When adding an appraisal to CI check the [runner tool cache][🏃♂️runner-tool-cache] to see which runner to use.
|
70
|
+
When adding an appraisal to CI, check the [runner tool cache][🏃♂️runner-tool-cache] to see which runner to use.
|
39
71
|
|
40
72
|
## The Reek List
|
41
73
|
|
@@ -43,7 +75,7 @@ Take a look at the `reek` list which is the file called `REEK` and find somethin
|
|
43
75
|
|
44
76
|
To refresh the `reek` list:
|
45
77
|
|
46
|
-
```
|
78
|
+
```console
|
47
79
|
bundle exec reek > REEK
|
48
80
|
```
|
49
81
|
|
@@ -51,24 +83,44 @@ bundle exec reek > REEK
|
|
51
83
|
|
52
84
|
To run all tests
|
53
85
|
|
54
|
-
```
|
86
|
+
```console
|
55
87
|
bundle exec rake test
|
56
88
|
```
|
57
89
|
|
90
|
+
### Spec organization (required)
|
91
|
+
|
92
|
+
- One spec file per class/module. For each class or module under `lib/`, keep all of its unit tests in a single spec file under `spec/` that mirrors the path and file name exactly: `lib/rspec/pending_for/release_cli.rb` -> `spec/rspec/pending_for/release_cli_spec.rb`.
|
93
|
+
- Never add a second spec file for the same class/module. Examples of disallowed names: `*_more_spec.rb`, `*_extra_spec.rb`, `*_status_spec.rb`, or any other suffix that still targets the same class. If you find yourself wanting a second file, merge those examples into the canonical spec file for that class/module.
|
94
|
+
- Exception: Integration specs that intentionally span multiple classes. Place these under `spec/integration/` (or a clearly named integration folder), and do not directly mirror a single class. Name them after the scenario, not a class.
|
95
|
+
- Migration note: If a duplicate spec file exists, move all examples into the canonical file and delete the duplicate. Do not leave stubs or empty files behind.
|
96
|
+
|
58
97
|
## Lint It
|
59
98
|
|
60
99
|
Run all the default tasks, which includes running the gradually autocorrecting linter, `rubocop-gradual`.
|
61
100
|
|
62
|
-
```
|
101
|
+
```console
|
63
102
|
bundle exec rake
|
64
103
|
```
|
65
104
|
|
66
105
|
Or just run the linter.
|
67
106
|
|
68
|
-
```
|
107
|
+
```console
|
69
108
|
bundle exec rake rubocop_gradual:autocorrect
|
70
109
|
```
|
71
110
|
|
111
|
+
For more detailed information about using RuboCop in this project, please see the [RUBOCOP.md](RUBOCOP.md) guide. This project uses `rubocop_gradual` instead of vanilla RuboCop, which requires specific commands for checking violations.
|
112
|
+
|
113
|
+
### Important: Do not add inline RuboCop disables
|
114
|
+
|
115
|
+
Never add `# rubocop:disable ...` / `# rubocop:enable ...` comments to code or specs (except when following the few existing `rubocop:disable` patterns for a rule already being disabled elsewhere in the code). Instead:
|
116
|
+
|
117
|
+
- Prefer configuration-based exclusions when a rule should not apply to certain paths or files (e.g., via `.rubocop.yml`).
|
118
|
+
- When a violation is temporary and you plan to fix it later, record it in `.rubocop_gradual.lock` using the gradual workflow:
|
119
|
+
- `bundle exec rake rubocop_gradual:autocorrect` (preferred)
|
120
|
+
- `bundle exec rake rubocop_gradual:force_update` (only when you cannot fix the violations immediately)
|
121
|
+
|
122
|
+
As a general rule, fix style issues rather than ignoring them. For example, our specs should follow RSpec conventions like using `described_class` for the class under test.
|
123
|
+
|
72
124
|
## Contributors
|
73
125
|
|
74
126
|
Your picture could be here!
|
@@ -77,55 +129,72 @@ Your picture could be here!
|
|
77
129
|
|
78
130
|
Made with [contributors-img][🖐contrib-rocks].
|
79
131
|
|
80
|
-
Also see GitLab Contributors: [https://gitlab.com/
|
132
|
+
Also see GitLab Contributors: [https://gitlab.com/galtzo-floss/rspec-pending_for/-/graphs/main][🚎contributors-gl]
|
81
133
|
|
82
134
|
## For Maintainers
|
83
135
|
|
84
136
|
### One-time, Per-maintainer, Setup
|
85
137
|
|
86
|
-
**IMPORTANT**:
|
87
|
-
|
88
|
-
|
138
|
+
**IMPORTANT**: To sign a build,
|
139
|
+
a public key for signing gems will need to be picked up by the line in the
|
140
|
+
`gemspec` defining the `spec.cert_chain` (check the relevant ENV variables there).
|
141
|
+
All releases to RubyGems.org are signed releases.
|
89
142
|
See: [RubyGems Security Guide][🔒️rubygems-security-guide]
|
90
143
|
|
144
|
+
NOTE: To build without signing the gem set `SKIP_GEM_SIGNING` to any value in the environment.
|
145
|
+
|
91
146
|
### To release a new version:
|
92
147
|
|
93
|
-
|
148
|
+
#### Automated process
|
149
|
+
|
150
|
+
1. Update version.rb to contian the correct version-to-be-released.
|
151
|
+
2. Run `bundle exec kettle-changelog`.
|
152
|
+
3. Run `bundle exec kettle-release`.
|
153
|
+
|
154
|
+
#### Manual process
|
155
|
+
|
156
|
+
1. Run `bin/setup && bin/rake` as a "test, coverage, & linting" sanity check
|
94
157
|
2. Update the version number in `version.rb`, and ensure `CHANGELOG.md` reflects changes
|
95
158
|
3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`
|
96
159
|
4. Run `git commit -am "🔖 Prepare release v<VERSION>"` to commit the changes
|
97
|
-
5. Run `git push` to trigger the final CI pipeline before release,
|
98
|
-
|
160
|
+
5. Run `git push` to trigger the final CI pipeline before release, and merge PRs
|
161
|
+
- NOTE: Remember to [check the build][🧪build].
|
99
162
|
6. Run `export GIT_TRUNK_BRANCH_NAME="$(git remote show origin | grep 'HEAD branch' | cut -d ' ' -f5)" && echo $GIT_TRUNK_BRANCH_NAME`
|
100
163
|
7. Run `git checkout $GIT_TRUNK_BRANCH_NAME`
|
101
|
-
8. Run `git pull origin $GIT_TRUNK_BRANCH_NAME` to ensure
|
102
|
-
9. Set `SOURCE_DATE_EPOCH` so `rake build` and `rake release` use same timestamp
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
164
|
+
8. Run `git pull origin $GIT_TRUNK_BRANCH_NAME` to ensure latest trunk code
|
165
|
+
9. Optional for older Bundler (< 2.7.0): Set `SOURCE_DATE_EPOCH` so `rake build` and `rake release` use the same timestamp and generate the same checksums
|
166
|
+
- If your Bundler is >= 2.7.0, you can skip this; builds are reproducible by default.
|
167
|
+
- Run `export SOURCE_DATE_EPOCH=$EPOCHSECONDS && echo $SOURCE_DATE_EPOCH`
|
168
|
+
- If the echo above has no output, then it didn't work.
|
169
|
+
- Note: `zsh/datetime` module is needed, if running `zsh`.
|
170
|
+
- In older versions of `bash` you can use `date +%s` instead, i.e. `export SOURCE_DATE_EPOCH=$(date +%s) && echo $SOURCE_DATE_EPOCH`
|
107
171
|
10. Run `bundle exec rake build`
|
108
|
-
11. Run `bin/gem_checksums` (more context [1][🔒️rubygems-checksums-pr]
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
[
|
116
|
-
|
172
|
+
11. Run `bin/gem_checksums` (more context [1][🔒️rubygems-checksums-pr], [2][🔒️rubygems-guides-pr])
|
173
|
+
to create SHA-256 and SHA-512 checksums. This functionality is provided by the `stone_checksums`
|
174
|
+
[gem][💎stone_checksums].
|
175
|
+
- The script automatically commits but does not push the checksums
|
176
|
+
12. Sanity check the SHA256, comparing with the output from the `bin/gem_checksums` command:
|
177
|
+
- `sha256sum pkg/<gem name>-<version>.gem`
|
178
|
+
13. Run `bundle exec rake release` which will create a git tag for the version,
|
179
|
+
push git commits and tags, and push the `.gem` file to [rubygems.org][💎rubygems]
|
180
|
+
|
181
|
+
[📜src-gl]: https://gitlab.com/galtzo-floss/rspec-pending_for/
|
182
|
+
[📜src-cb]: https://codeberg.org/galtzo-floss/rspec-pending_for
|
183
|
+
[📜src-gh]: https://github.com/galtzo-floss/rspec-pending_for
|
184
|
+
[🧪build]: https://github.com/galtzo-floss/rspec-pending_for/actions
|
185
|
+
[🤝conduct]: https://gitlab.com/galtzo-floss/rspec-pending_for/-/blob/main/CODE_OF_CONDUCT.md
|
117
186
|
[🖐contrib-rocks]: https://contrib.rocks
|
118
|
-
[🖐contributors]: https://github.com/
|
119
|
-
[🚎contributors-gl]: https://gitlab.com/
|
120
|
-
[🖐contributors-img]: https://contrib.rocks/image?repo=
|
187
|
+
[🖐contributors]: https://github.com/galtzo-floss/rspec-pending_for/graphs/contributors
|
188
|
+
[🚎contributors-gl]: https://gitlab.com/galtzo-floss/rspec-pending_for/-/graphs/main
|
189
|
+
[🖐contributors-img]: https://contrib.rocks/image?repo=galtzo-floss/rspec-pending_for
|
121
190
|
[💎rubygems]: https://rubygems.org
|
122
191
|
[🔒️rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
|
123
192
|
[🔒️rubygems-checksums-pr]: https://github.com/rubygems/rubygems/pull/6022
|
124
193
|
[🔒️rubygems-guides-pr]: https://github.com/rubygems/guides/pull/325
|
194
|
+
[💎stone_checksums]: https://github.com/galtzo-floss/stone_checksums
|
125
195
|
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
126
196
|
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
127
197
|
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
128
198
|
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
129
|
-
[🚎
|
130
|
-
[🚎appraisal-fork]: https://github.com/pboling/appraisal/tree/galtzo
|
199
|
+
[🚎appraisal2]: https://github.com/appraisal-rb/appraisal2
|
131
200
|
[🏃♂️runner-tool-cache]: https://github.com/ruby/ruby-builder/releases/tag/toolcache
|
data/FUNDING.md
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
<!-- RELEASE-NOTES-FOOTER-START -->
|
2
|
+
|
3
|
+
Official Discord 👉️ [![Live Chat on Discord][✉️discord-invite-img]][✉️discord-invite]
|
4
|
+
|
5
|
+
Many paths lead to being a sponsor or a backer of this project. Are you on such a path?
|
6
|
+
|
7
|
+
[![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
|
8
|
+
|
9
|
+
[![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]
|
10
|
+
|
11
|
+
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
|
12
|
+
[⛳liberapay]: https://liberapay.com/pboling/donate
|
13
|
+
[🖇osc-backers]: https://opencollective.com/galtzo-floss#backer
|
14
|
+
[🖇osc-backers-i]: https://opencollective.com/galtzo-floss/backers/badge.svg?style=flat
|
15
|
+
[🖇osc-sponsors]: https://opencollective.com/galtzo-floss#sponsor
|
16
|
+
[🖇osc-sponsors-i]: https://opencollective.com/galtzo-floss/sponsors/badge.svg?style=flat
|
17
|
+
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
18
|
+
[🖇sponsor]: https://github.com/sponsors/pboling
|
19
|
+
[🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
|
20
|
+
[🖇polar]: https://polar.sh/pboling
|
21
|
+
[🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
|
22
|
+
[🖇kofi]: https://ko-fi.com/O5O86SNP4
|
23
|
+
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
|
24
|
+
[🖇patreon]: https://patreon.com/galtzo
|
25
|
+
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
|
26
|
+
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
27
|
+
[🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
|
28
|
+
[🖇paypal]: https://www.paypal.com/paypalme/peterboling
|
29
|
+
[✉️discord-invite]: https://discord.gg/3qme4XHNKN
|
30
|
+
[✉️discord-invite-img]: https://img.shields.io/discord/1373797679469170758?style=flat
|
31
|
+
|
32
|
+
<!-- RELEASE-NOTES-FOOTER-END -->
|
33
|
+
|
34
|
+
# 🤑 Request for Help
|
35
|
+
|
36
|
+
Maintainers have teeth and need to pay their dentists.
|
37
|
+
After getting laid off in an RIF in March and filled with many dozens of rejections,
|
38
|
+
I'm now spending ~60+ hours a week building open source tools.
|
39
|
+
I'm hoping to be able to pay for my kids' health insurance this month,
|
40
|
+
so if you value the work I am doing, I need your support.
|
41
|
+
Please consider sponsoring me or the project.
|
42
|
+
|
43
|
+
To join the community or get help 👇️ Join the Discord.
|
44
|
+
|
45
|
+
[![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite]
|
46
|
+
|
47
|
+
To say "thanks for maintaining such a great tool" ☝️ Join the Discord or 👇️ send money.
|
48
|
+
|
49
|
+
[![Sponsor galtzo-floss/rspec-pending_for on Open Source Collective][🖇osc-all-bottom-img]][🖇osc] 💌 [![Sponsor me on GitHub Sponsors][🖇sponsor-bottom-img]][🖇sponsor] 💌 [![Sponsor me on Liberapay][⛳liberapay-bottom-img]][⛳liberapay-img] 💌 [![Donate on PayPal][🖇paypal-bottom-img]][🖇paypal-img]
|
50
|
+
|
51
|
+
# Another Way to Support Open Source Software
|
52
|
+
|
53
|
+
> How wonderful it is that nobody need wait a single moment before starting to improve the world.<br/>
|
54
|
+
>—Anne Frank
|
55
|
+
|
56
|
+
I’m driven by a passion to foster a thriving open-source community – a space where people can tackle complex problems, no matter how small. Revitalizing libraries that have fallen into disrepair, and building new libraries focused on solving real-world challenges, are my passions — totaling 79 hours of FLOSS coding over just the past seven days, a pretty regular week for me. I was recently affected by layoffs, and the tech jobs market is unwelcoming. I’m reaching out here because your support would significantly aid my efforts to provide for my family, and my farm (11 🐔 chickens, 2 🐶 dogs, 3 🐰 rabbits, 8 🐈 cats).
|
57
|
+
|
58
|
+
If you work at a company that uses my work, please encourage them to support me as a corporate sponsor. My work on gems you use might show up in `bundle fund`.
|
59
|
+
|
60
|
+
I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed to empower open-source developers like myself to get paid for the work we do, in a sustainable way. Please give it a look.
|
61
|
+
|
62
|
+
**[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
|
63
|
+
|
64
|
+
[⛳liberapay-bottom-img]: https://img.shields.io/liberapay/goal/pboling.svg?style=for-the-badge&logo=liberapay&color=a51611
|
65
|
+
[🖇osc-all-img]: https://img.shields.io/opencollective/all/galtzo-floss
|
66
|
+
[🖇osc-sponsors-img]: https://img.shields.io/opencollective/sponsors/galtzo-floss
|
67
|
+
[🖇osc-backers-img]: https://img.shields.io/opencollective/backers/galtzo-floss
|
68
|
+
[🖇osc-all-bottom-img]: https://img.shields.io/opencollective/all/galtzo-floss?style=for-the-badge
|
69
|
+
[🖇osc-sponsors-bottom-img]: https://img.shields.io/opencollective/sponsors/galtzo-floss?style=for-the-badge
|
70
|
+
[🖇osc-backers-bottom-img]: https://img.shields.io/opencollective/backers/galtzo-floss?style=for-the-badge
|
71
|
+
[🖇osc]: https://opencollective.com/galtzo-floss
|
72
|
+
[🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
|
73
|
+
[🖇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
|
74
|
+
[🖇paypal-bottom-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=for-the-badge&logo=paypal&color=0A0A0A
|
75
|
+
[🖇floss-funding.dev]: https://floss-funding.dev
|
76
|
+
[🖇floss-funding-gem]: https://github.com/galtzo-floss/floss_funding
|
77
|
+
[✉️discord-invite-img-ftb]: https://img.shields.io/discord/1373797679469170758?style=for-the-badge
|
data/LICENSE.txt
CHANGED