kettle-dev 1.1.38 → 1.1.39
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 -1
- data/CONTRIBUTING.md +1 -1
- data/CONTRIBUTING.md.example +220 -0
- data/Rakefile.example +1 -1
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +6 -4
- 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: 0c489dd6b492285c3d4bf4b0d9339c20e1355523e885381333f7c00c731ddd9f
         | 
| 4 | 
            +
              data.tar.gz: 13ce81be035837587dc3e755abcfd032c7fa379851ea09a5fdc593989dc268d3
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: a0a4a57da77b059663df559b76ae12082784ddc5aaec6298273cbef21575a99c755dc3ac1b3c2a1bbda7586373ee7408a5756e5dd2d99caadb0e31471fd5ddba
         | 
| 7 | 
            +
              data.tar.gz: 05a6e012246d0b58bbe4bfc5fc893a77da4661e78fe268d2d7ac8d66103c64600b6f92f13b4c3c96c53ed7d879c2d51d766719c0634fc2a69cc40078161b3d8c
         | 
    
        checksums.yaml.gz.sig
    CHANGED
    
    | Binary file | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -30,6 +30,21 @@ Please file a bug if you notice a violation of semantic versioning. | |
| 30 30 |  | 
| 31 31 | 
             
            ### Security
         | 
| 32 32 |  | 
| 33 | 
            +
            ## [1.1.39] - 2025-10-27
         | 
| 34 | 
            +
             | 
| 35 | 
            +
            - TAG: [v1.1.39][1.1.39t]
         | 
| 36 | 
            +
            - COVERAGE: 96.04% -- 3949/4112 lines in 26 files
         | 
| 37 | 
            +
            - BRANCH COVERAGE: 80.85% -- 1634/2021 branches in 26 files
         | 
| 38 | 
            +
            - 79.68% documented
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            ### Added
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            - CONTRIBUTING.md.example tailored for the templated gem
         | 
| 43 | 
            +
             | 
| 44 | 
            +
            ### Fixed
         | 
| 45 | 
            +
             | 
| 46 | 
            +
            - Minor typos
         | 
| 47 | 
            +
             | 
| 33 48 | 
             
            ## [1.1.38] - 2025-10-21
         | 
| 34 49 |  | 
| 35 50 | 
             
            - TAG: [v1.1.38][1.1.38t]
         | 
| @@ -1166,7 +1181,9 @@ Please file a bug if you notice a violation of semantic versioning. | |
| 1166 1181 | 
             
              - Selecting will run the selected workflow via `act`
         | 
| 1167 1182 | 
             
              - This may move to its own gem in the future.
         | 
| 1168 1183 |  | 
| 1169 | 
            -
            [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1. | 
| 1184 | 
            +
            [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.39...HEAD
         | 
| 1185 | 
            +
            [1.1.39]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.38...v1.1.39
         | 
| 1186 | 
            +
            [1.1.39t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.39
         | 
| 1170 1187 | 
             
            [1.1.38]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.37...v1.1.38
         | 
| 1171 1188 | 
             
            [1.1.38t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.38
         | 
| 1172 1189 | 
             
            [1.1.37]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.36...v1.1.37
         | 
    
        data/CONTRIBUTING.md
    CHANGED
    
    | @@ -176,7 +176,7 @@ NOTE: To build without signing the gem set `SKIP_GEM_SIGNING` to any value in th | |
| 176 176 |  | 
| 177 177 | 
             
            #### Automated process
         | 
| 178 178 |  | 
| 179 | 
            -
            1. Update version.rb to  | 
| 179 | 
            +
            1. Update version.rb to contain the correct version-to-be-released.
         | 
| 180 180 | 
             
            2. Run `bundle exec kettle-changelog`.
         | 
| 181 181 | 
             
            3. Run `bundle exec kettle-release`.
         | 
| 182 182 |  | 
| @@ -0,0 +1,220 @@ | |
| 1 | 
            +
            # Contributing
         | 
| 2 | 
            +
             | 
| 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 | 
            +
            the [code of conduct][🤝conduct].
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            To submit a patch, please fork the project, create a patch with tests, and send a pull request.
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            Remember to [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] if you make changes.
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            ## Help out!
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            Take a look at the `reek` list which is the file called `REEK` and find something to improve.
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            Follow these instructions:
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            1. Fork the repository
         | 
| 18 | 
            +
            2. Create a feature branch (`git checkout -b my-new-feature`)
         | 
| 19 | 
            +
            3. Make some fixes.
         | 
| 20 | 
            +
            4. Commit changes (`git commit -am 'Added some feature'`)
         | 
| 21 | 
            +
            5. Push to the branch (`git push origin my-new-feature`)
         | 
| 22 | 
            +
            6. Make sure to add tests for it. This is important, so it doesn't break in a future release.
         | 
| 23 | 
            +
            7. Create new Pull Request.
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            ## Executables vs Rake tasks
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            Executables shipped by dependencies, such as kettle-dev, and stone_checksums, are available
         | 
| 28 | 
            +
            after running `bin/setup`. These include:
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            - gem_checksums
         | 
| 31 | 
            +
            - kettle-changelog
         | 
| 32 | 
            +
            - kettle-commit-msg
         | 
| 33 | 
            +
            - kettle-dev-setup
         | 
| 34 | 
            +
            - kettle-dvcs
         | 
| 35 | 
            +
            - kettle-pre-release
         | 
| 36 | 
            +
            - kettle-readme-backers
         | 
| 37 | 
            +
            - kettle-release
         | 
| 38 | 
            +
             | 
| 39 | 
            +
            There are many Rake tasks available as well. You can see them by running:
         | 
| 40 | 
            +
             | 
| 41 | 
            +
            ```shell
         | 
| 42 | 
            +
            bin/rake -T
         | 
| 43 | 
            +
            ```
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            ## Environment Variables for Local Development
         | 
| 46 | 
            +
             | 
| 47 | 
            +
            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.
         | 
| 48 | 
            +
             | 
| 49 | 
            +
            General/runtime
         | 
| 50 | 
            +
            - DEBUG: Enable extra internal logging for this library (default: false)
         | 
| 51 | 
            +
            - REQUIRE_BENCH: Enable `require_bench` to profile requires (default: false)
         | 
| 52 | 
            +
            - CI: When set to true, adjusts default rake tasks toward CI behavior
         | 
| 53 | 
            +
             | 
| 54 | 
            +
            Coverage (kettle-soup-cover / SimpleCov)
         | 
| 55 | 
            +
            - K_SOUP_COV_DO: Enable coverage collection (default: true in .envrc)
         | 
| 56 | 
            +
            - K_SOUP_COV_FORMATTERS: Comma-separated list of formatters (html, xml, rcov, lcov, json, tty)
         | 
| 57 | 
            +
            - K_SOUP_COV_MIN_LINE: Minimum line coverage threshold (integer, e.g., 100)
         | 
| 58 | 
            +
            - K_SOUP_COV_MIN_BRANCH: Minimum branch coverage threshold (integer, e.g., 100)
         | 
| 59 | 
            +
            - K_SOUP_COV_MIN_HARD: Fail the run if thresholds are not met (true/false)
         | 
| 60 | 
            +
            - K_SOUP_COV_MULTI_FORMATTERS: Enable multiple formatters at once (true/false)
         | 
| 61 | 
            +
            - K_SOUP_COV_OPEN_BIN: Path to browser opener for HTML (empty disables auto-open)
         | 
| 62 | 
            +
            - MAX_ROWS: Limit console output rows for simplecov-console (e.g., 1)
         | 
| 63 | 
            +
              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.
         | 
| 64 | 
            +
             | 
| 65 | 
            +
            GitHub API and CI helpers
         | 
| 66 | 
            +
            - GITHUB_TOKEN or GH_TOKEN: Token used by `ci:act` and release workflow checks to query GitHub Actions status at higher rate limits
         | 
| 67 | 
            +
             | 
| 68 | 
            +
            Releasing and signing
         | 
| 69 | 
            +
            - SKIP_GEM_SIGNING: If set, skip gem signing during build/release
         | 
| 70 | 
            +
            - GEM_CERT_USER: Username for selecting your public cert in `certs/<USER>.pem` (defaults to $USER)
         | 
| 71 | 
            +
            - SOURCE_DATE_EPOCH: Reproducible build timestamp. `kettle-release` will set this automatically for the session.
         | 
| 72 | 
            +
             | 
| 73 | 
            +
            Git hooks and commit message helpers (exe/kettle-commit-msg)
         | 
| 74 | 
            +
            - GIT_HOOK_BRANCH_VALIDATE: Branch name validation mode (e.g., `jira`) or `false` to disable
         | 
| 75 | 
            +
            - GIT_HOOK_FOOTER_APPEND: Append a footer to commit messages when goalie allows (true/false)
         | 
| 76 | 
            +
            - GIT_HOOK_FOOTER_SENTINEL: Required when footer append is enabled — a unique first-line sentinel to prevent duplicates
         | 
| 77 | 
            +
            - GIT_HOOK_FOOTER_APPEND_DEBUG: Extra debug output in the footer template (true/false)
         | 
| 78 | 
            +
             | 
| 79 | 
            +
            For a quick starting point, this repository’s `.envrc` shows sane defaults, and `.env.local` can override them locally.
         | 
| 80 | 
            +
             | 
| 81 | 
            +
            ## Appraisals
         | 
| 82 | 
            +
             | 
| 83 | 
            +
            From time to time the [appraisal2][🚎appraisal2] gemfiles in `gemfiles/` will need to be updated.
         | 
| 84 | 
            +
            They are created and updated with the commands:
         | 
| 85 | 
            +
             | 
| 86 | 
            +
            ```console
         | 
| 87 | 
            +
            bin/rake appraisal:update
         | 
| 88 | 
            +
            ```
         | 
| 89 | 
            +
             | 
| 90 | 
            +
            When adding an appraisal to CI, check the [runner tool cache][🏃♂️runner-tool-cache] to see which runner to use.
         | 
| 91 | 
            +
             | 
| 92 | 
            +
            ## The Reek List
         | 
| 93 | 
            +
             | 
| 94 | 
            +
            Take a look at the `reek` list which is the file called `REEK` and find something to improve.
         | 
| 95 | 
            +
             | 
| 96 | 
            +
            To refresh the `reek` list:
         | 
| 97 | 
            +
             | 
| 98 | 
            +
            ```console
         | 
| 99 | 
            +
            bundle exec reek > REEK
         | 
| 100 | 
            +
            ```
         | 
| 101 | 
            +
             | 
| 102 | 
            +
            ## Run Tests
         | 
| 103 | 
            +
             | 
| 104 | 
            +
            To run all tests
         | 
| 105 | 
            +
             | 
| 106 | 
            +
            ```console
         | 
| 107 | 
            +
            bundle exec rake test
         | 
| 108 | 
            +
            ```
         | 
| 109 | 
            +
             | 
| 110 | 
            +
            ### Spec organization (required)
         | 
| 111 | 
            +
             | 
| 112 | 
            +
            - 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/kettle/dev/release_cli.rb` -> `spec/kettle/dev/release_cli_spec.rb`.
         | 
| 113 | 
            +
            - 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.
         | 
| 114 | 
            +
            - 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.
         | 
| 115 | 
            +
            - 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.
         | 
| 116 | 
            +
             | 
| 117 | 
            +
            ## Lint It
         | 
| 118 | 
            +
             | 
| 119 | 
            +
            Run all the default tasks, which includes running the gradually autocorrecting linter, `rubocop-gradual`.
         | 
| 120 | 
            +
             | 
| 121 | 
            +
            ```console
         | 
| 122 | 
            +
            bundle exec rake
         | 
| 123 | 
            +
            ```
         | 
| 124 | 
            +
             | 
| 125 | 
            +
            Or just run the linter.
         | 
| 126 | 
            +
             | 
| 127 | 
            +
            ```console
         | 
| 128 | 
            +
            bundle exec rake rubocop_gradual:autocorrect
         | 
| 129 | 
            +
            ```
         | 
| 130 | 
            +
             | 
| 131 | 
            +
            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.
         | 
| 132 | 
            +
             | 
| 133 | 
            +
            ### Important: Do not add inline RuboCop disables
         | 
| 134 | 
            +
             | 
| 135 | 
            +
            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:
         | 
| 136 | 
            +
             | 
| 137 | 
            +
            - Prefer configuration-based exclusions when a rule should not apply to certain paths or files (e.g., via `.rubocop.yml`).
         | 
| 138 | 
            +
            - When a violation is temporary, and you plan to fix it later, record it in `.rubocop_gradual.lock` using the gradual workflow:
         | 
| 139 | 
            +
              - `bundle exec rake rubocop_gradual:autocorrect` (preferred)
         | 
| 140 | 
            +
              - `bundle exec rake rubocop_gradual:force_update` (only when you cannot fix the violations immediately)
         | 
| 141 | 
            +
             | 
| 142 | 
            +
            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.
         | 
| 143 | 
            +
             | 
| 144 | 
            +
            ## Contributors
         | 
| 145 | 
            +
             | 
| 146 | 
            +
            Your picture could be here!
         | 
| 147 | 
            +
             | 
| 148 | 
            +
            [![Contributors][🖐contributors-img]][🖐contributors]
         | 
| 149 | 
            +
             | 
| 150 | 
            +
            Made with [contributors-img][🖐contrib-rocks].
         | 
| 151 | 
            +
             | 
| 152 | 
            +
            Also see GitLab Contributors: [https://gitlab.com/kettle-rb/kettle-dev/-/graphs/main][🚎contributors-gl]
         | 
| 153 | 
            +
             | 
| 154 | 
            +
            ## For Maintainers
         | 
| 155 | 
            +
             | 
| 156 | 
            +
            ### One-time, Per-maintainer, Setup
         | 
| 157 | 
            +
             | 
| 158 | 
            +
            **IMPORTANT**: To sign a build,
         | 
| 159 | 
            +
            a public key for signing gems will need to be picked up by the line in the
         | 
| 160 | 
            +
            `gemspec` defining the `spec.cert_chain` (check the relevant ENV variables there).
         | 
| 161 | 
            +
            All releases are signed releases.
         | 
| 162 | 
            +
            See: [RubyGems Security Guide][🔒️rubygems-security-guide]
         | 
| 163 | 
            +
             | 
| 164 | 
            +
            NOTE: To build without signing the gem set `SKIP_GEM_SIGNING` to any value in the environment.
         | 
| 165 | 
            +
             | 
| 166 | 
            +
            ### To release a new version:
         | 
| 167 | 
            +
             | 
| 168 | 
            +
            #### Automated process
         | 
| 169 | 
            +
             | 
| 170 | 
            +
            1. Update version.rb to contain the correct version-to-be-released.
         | 
| 171 | 
            +
            2. Run `bundle exec kettle-changelog`.
         | 
| 172 | 
            +
            3. Run `bundle exec kettle-release`.
         | 
| 173 | 
            +
             | 
| 174 | 
            +
            #### Manual process
         | 
| 175 | 
            +
             | 
| 176 | 
            +
            1. Run `bin/setup && bin/rake` as a "test, coverage, & linting" sanity check
         | 
| 177 | 
            +
            2. Update the version number in `version.rb`, and ensure `CHANGELOG.md` reflects changes
         | 
| 178 | 
            +
            3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`
         | 
| 179 | 
            +
            4. Run `git commit -am "🔖 Prepare release v<VERSION>"` to commit the changes
         | 
| 180 | 
            +
            5. Run `git push` to trigger the final CI pipeline before release, and merge PRs
         | 
| 181 | 
            +
                - NOTE: Remember to [check the build][🧪build].
         | 
| 182 | 
            +
            6. Run `export GIT_TRUNK_BRANCH_NAME="$(git remote show origin | grep 'HEAD branch' | cut -d ' ' -f5)" && echo $GIT_TRUNK_BRANCH_NAME`
         | 
| 183 | 
            +
            7. Run `git checkout $GIT_TRUNK_BRANCH_NAME`
         | 
| 184 | 
            +
            8. Run `git pull origin $GIT_TRUNK_BRANCH_NAME` to ensure latest trunk code
         | 
| 185 | 
            +
            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
         | 
| 186 | 
            +
                - If your Bundler is >= 2.7.0, you can skip this; builds are reproducible by default.
         | 
| 187 | 
            +
                - Run `export SOURCE_DATE_EPOCH=$EPOCHSECONDS && echo $SOURCE_DATE_EPOCH`
         | 
| 188 | 
            +
                - If the echo above has no output, then it didn't work.
         | 
| 189 | 
            +
                - Note: `zsh/datetime` module is needed, if running `zsh`.
         | 
| 190 | 
            +
                - In older versions of `bash` you can use `date +%s` instead, i.e. `export SOURCE_DATE_EPOCH=$(date +%s) && echo $SOURCE_DATE_EPOCH`
         | 
| 191 | 
            +
            10. Run `bundle exec rake build`
         | 
| 192 | 
            +
            11. Run `bin/gem_checksums` (more context [1][🔒️rubygems-checksums-pr], [2][🔒️rubygems-guides-pr])
         | 
| 193 | 
            +
                to create SHA-256 and SHA-512 checksums. This functionality is provided by the `stone_checksums`
         | 
| 194 | 
            +
                [gem][💎stone_checksums].
         | 
| 195 | 
            +
                - The script automatically commits but does not push the checksums
         | 
| 196 | 
            +
            12. Sanity check the SHA256, comparing with the output from the `bin/gem_checksums` command:
         | 
| 197 | 
            +
                - `sha256sum pkg/<gem name>-<version>.gem`
         | 
| 198 | 
            +
            13. Run `bundle exec rake release` which will create a git tag for the version,
         | 
| 199 | 
            +
                push git commits and tags, and push the `.gem` file to the gem host configured in the gemspec.
         | 
| 200 | 
            +
             | 
| 201 | 
            +
            [📜src-gl]: https://gitlab.com/kettle-rb/kettle-dev/
         | 
| 202 | 
            +
            [📜src-cb]: https://codeberg.org/kettle-rb/kettle-dev
         | 
| 203 | 
            +
            [📜src-gh]: https://github.com/kettle-rb/kettle-dev
         | 
| 204 | 
            +
            [🧪build]: https://github.com/kettle-rb/kettle-dev/actions
         | 
| 205 | 
            +
            [🤝conduct]: https://gitlab.com/kettle-rb/kettle-dev/-/blob/main/CODE_OF_CONDUCT.md
         | 
| 206 | 
            +
            [🖐contrib-rocks]: https://contrib.rocks
         | 
| 207 | 
            +
            [🖐contributors]: https://github.com/kettle-rb/kettle-dev/graphs/contributors
         | 
| 208 | 
            +
            [🚎contributors-gl]: https://gitlab.com/kettle-rb/kettle-dev/-/graphs/main
         | 
| 209 | 
            +
            [🖐contributors-img]: https://contrib.rocks/image?repo=kettle-rb/kettle-dev
         | 
| 210 | 
            +
            [💎gem-coop]: https://gem.coop
         | 
| 211 | 
            +
            [🔒️rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
         | 
| 212 | 
            +
            [🔒️rubygems-checksums-pr]: https://github.com/rubygems/rubygems/pull/6022
         | 
| 213 | 
            +
            [🔒️rubygems-guides-pr]: https://github.com/rubygems/guides/pull/325
         | 
| 214 | 
            +
            [💎stone_checksums]: https://github.com/galtzo-floss/stone_checksums
         | 
| 215 | 
            +
            [📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
         | 
| 216 | 
            +
            [📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
         | 
| 217 | 
            +
            [📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
         | 
| 218 | 
            +
            [📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
         | 
| 219 | 
            +
            [🚎appraisal2]: https://github.com/appraisal-rb/appraisal2
         | 
| 220 | 
            +
            [🏃♂️runner-tool-cache]: https://github.com/ruby/ruby-builder/releases/tag/toolcache
         | 
    
        data/Rakefile.example
    CHANGED
    
    
    
        data/lib/kettle/dev/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: kettle-dev
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1.1. | 
| 4 | 
            +
              version: 1.1.39
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Peter H. Boling
         | 
| @@ -208,6 +208,7 @@ files: | |
| 208 208 | 
             
            - "./.simplecov.example"
         | 
| 209 209 | 
             
            - "./Appraisals.example"
         | 
| 210 210 | 
             
            - "./CHANGELOG.md.example"
         | 
| 211 | 
            +
            - "./CONTRIBUTING.md.example"
         | 
| 211 212 | 
             
            - "./FUNDING.md.no-osc.example"
         | 
| 212 213 | 
             
            - "./Gemfile.example"
         | 
| 213 214 | 
             
            - "./README.md.example"
         | 
| @@ -276,6 +277,7 @@ files: | |
| 276 277 | 
             
            - CITATION.cff
         | 
| 277 278 | 
             
            - CODE_OF_CONDUCT.md
         | 
| 278 279 | 
             
            - CONTRIBUTING.md
         | 
| 280 | 
            +
            - CONTRIBUTING.md.example
         | 
| 279 281 | 
             
            - FUNDING.md
         | 
| 280 282 | 
             
            - FUNDING.md.no-osc.example
         | 
| 281 283 | 
             
            - Gemfile
         | 
| @@ -395,10 +397,10 @@ licenses: | |
| 395 397 | 
             
            - MIT
         | 
| 396 398 | 
             
            metadata:
         | 
| 397 399 | 
             
              homepage_uri: https://kettle-dev.galtzo.com/
         | 
| 398 | 
            -
              source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1. | 
| 399 | 
            -
              changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1. | 
| 400 | 
            +
              source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1.39
         | 
| 401 | 
            +
              changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.39/CHANGELOG.md
         | 
| 400 402 | 
             
              bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
         | 
| 401 | 
            -
              documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1. | 
| 403 | 
            +
              documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.39
         | 
| 402 404 | 
             
              funding_uri: https://github.com/sponsors/pboling
         | 
| 403 405 | 
             
              wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
         | 
| 404 406 | 
             
              news_uri: https://www.railsbling.com/tags/kettle-dev
         | 
    
        metadata.gz.sig
    CHANGED
    
    | Binary file |