kettle-dev 1.1.39 → 1.1.41
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/.git-hooks/commit-msg +31 -25
- data/CHANGELOG.md +27 -1
- data/README.md +2 -2
- data/README.md.example +2 -2
- data/README.md.no-osc.example +2 -2
- data/Rakefile.example +1 -1
- data/lib/kettle/dev/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -4
- metadata.gz.sig +1 -1
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: f02237350ef2e23cbdceaa2808cbb17ba1ba88fd016c70aeadf99b0c4ec38c2f
         | 
| 4 | 
            +
              data.tar.gz: f9fbe3d403d423ac6abd8788292e19fe0fb1617ddce45df184d4f77678d625bc
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: '0728c6174f5604d61d91c68a7cc1d3e5d2fba542b81546f4de16a91c71813e458df5de5fb1a7a0846bac690662a8e894c12191d3eca5dccd45feac61c795116d'
         | 
| 7 | 
            +
              data.tar.gz: 2e3448277806684718033a9dbf9a016d751bda680dba1e1ad04b0c683a19ecd0a4c47c855effe95569530b530993ca014bf314544702e9f2724943a888367a16
         | 
    
        checksums.yaml.gz.sig
    CHANGED
    
    | Binary file | 
    
        data/.git-hooks/commit-msg
    CHANGED
    
    | @@ -16,33 +16,39 @@ begin | |
| 16 16 | 
             
              # Is the first character a GitMoji?
         | 
| 17 17 | 
             
              gitmoji_index = full_text =~ Gitmoji::Regex::REGEX
         | 
| 18 18 | 
             
              if gitmoji_index == 0
         | 
| 19 | 
            -
                exit | 
| 19 | 
            +
                exit(0)
         | 
| 20 20 | 
             
              else
         | 
| 21 | 
            -
                denied =  | 
| 22 | 
            -
            Oh snap, think again...
         | 
| 23 | 
            -
             | 
| 24 | 
            -
             | 
| 25 | 
            -
            |    _ |  |       |    |   ||       ||       ||       ||       ||      | |  |
         | 
| 26 | 
            -
            |   | ||  |    ___|    |   ||    ___||       ||_     _||    ___||  _    ||  |
         | 
| 27 | 
            -
            |   |_||_ |   |___     |   ||   |___ |       |  |   |  |   |___ | | |   ||  |
         | 
| 28 | 
            -
            |    __  ||    ___| ___|   ||    ___||      _|  |   |  |    ___|| |_|   ||__|
         | 
| 29 | 
            -
            |   |  | ||   |___ |       ||   |___ |     |_   |   |  |   |___ |       | __
         | 
| 30 | 
            -
            |___|  |_||_______||_______||_______||_______|  |___|  |_______||______| |__|
         | 
| 31 | 
            -
             | 
| 32 | 
            -
             | 
| 33 | 
            -
            Did you forget to add a relevant gitmoji? (see https://gitmoji.dev/ for tools)
         | 
| 34 | 
            -
            In this project, a Gitmoji must be the first grapheme of the commit message.
         | 
| 35 | 
            -
            What's a grapheme?
         | 
| 36 | 
            -
            A symbol rendered to be visually identifiable as a single character, but which may be composed of multiple Unicode code points)
         | 
| 37 | 
            -
            Must match: #{Gitmoji::Regex::REGEX | 
| 38 | 
            -
            #{ | 
| 39 | 
            -
            Example: git commit -m "✨ My excellent new feature"
         | 
| 40 | 
            -
             | 
| 41 | 
            -
            EOM
         | 
| 21 | 
            +
                denied = <<~EOM
         | 
| 22 | 
            +
                  Oh snap, think again...
         | 
| 23 | 
            +
                  
         | 
| 24 | 
            +
                   ______    _______      ___  _______  _______  _______  _______  ______   __
         | 
| 25 | 
            +
                  |    _ |  |       |    |   ||       ||       ||       ||       ||      | |  |
         | 
| 26 | 
            +
                  |   | ||  |    ___|    |   ||    ___||       ||_     _||    ___||  _    ||  |
         | 
| 27 | 
            +
                  |   |_||_ |   |___     |   ||   |___ |       |  |   |  |   |___ | | |   ||  |
         | 
| 28 | 
            +
                  |    __  ||    ___| ___|   ||    ___||      _|  |   |  |    ___|| |_|   ||__|
         | 
| 29 | 
            +
                  |   |  | ||   |___ |       ||   |___ |     |_   |   |  |   |___ |       | __
         | 
| 30 | 
            +
                  |___|  |_||_______||_______||_______||_______|  |___|  |_______||______| |__|
         | 
| 31 | 
            +
                  
         | 
| 32 | 
            +
                  
         | 
| 33 | 
            +
                  Did you forget to add a relevant gitmoji? (see https://gitmoji.dev/ for tools)
         | 
| 34 | 
            +
                  In this project, a Gitmoji must be the first grapheme of the commit message.
         | 
| 35 | 
            +
                  What's a grapheme?
         | 
| 36 | 
            +
                  A symbol rendered to be visually identifiable as a single character, but which may be composed of multiple Unicode code points)
         | 
| 37 | 
            +
                  Must match: #{Gitmoji::Regex::REGEX}
         | 
| 38 | 
            +
                  #{"Found a gitmoji at character index #{gitmoji_index}... not good enough.\n" if gitmoji_index}
         | 
| 39 | 
            +
                  Example: git commit -m "✨ My excellent new feature"
         | 
| 40 | 
            +
                  
         | 
| 41 | 
            +
                EOM
         | 
| 42 42 | 
             
                puts denied
         | 
| 43 | 
            -
                exit | 
| 43 | 
            +
                exit(1)
         | 
| 44 44 | 
             
              end
         | 
| 45 45 | 
             
            rescue LoadError => e
         | 
| 46 | 
            -
               | 
| 47 | 
            -
             | 
| 46 | 
            +
              failure = <<~EOM
         | 
| 47 | 
            +
                gitmoji-regex gem not found: #{e.class}: #{e.message}.
         | 
| 48 | 
            +
                  Skipping gitmoji check and allowing commit to proceed.
         | 
| 49 | 
            +
                  Recommendation: add 'gitmoji-regex' to your development dependencies to enable this check.
         | 
| 50 | 
            +
                
         | 
| 51 | 
            +
              EOM
         | 
| 52 | 
            +
              warn(failure)
         | 
| 53 | 
            +
              exit(0)
         | 
| 48 54 | 
             
            end
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -30,6 +30,28 @@ Please file a bug if you notice a violation of semantic versioning. | |
| 30 30 |  | 
| 31 31 | 
             
            ### Security
         | 
| 32 32 |  | 
| 33 | 
            +
            ## [1.1.41] - 2025-10-28
         | 
| 34 | 
            +
             | 
| 35 | 
            +
            - TAG: [v1.1.41][1.1.41t]
         | 
| 36 | 
            +
            - COVERAGE: 96.06% -- 3950/4112 lines in 26 files
         | 
| 37 | 
            +
            - BRANCH COVERAGE: 80.85% -- 1634/2021 branches in 26 files
         | 
| 38 | 
            +
            - 79.68% documented
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            ### Changed
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            - Improved formatting of errors
         | 
| 43 | 
            +
             | 
| 44 | 
            +
            ## [1.1.40] - 2025-10-28
         | 
| 45 | 
            +
             | 
| 46 | 
            +
            - TAG: [v1.1.40][1.1.40t]
         | 
| 47 | 
            +
            - COVERAGE: 96.04% -- 3949/4112 lines in 26 files
         | 
| 48 | 
            +
            - BRANCH COVERAGE: 80.85% -- 1634/2021 branches in 26 files
         | 
| 49 | 
            +
            - 79.68% documented
         | 
| 50 | 
            +
             | 
| 51 | 
            +
            ### Changed
         | 
| 52 | 
            +
             | 
| 53 | 
            +
            - Improved copy for this gem and templated gems
         | 
| 54 | 
            +
             | 
| 33 55 | 
             
            ## [1.1.39] - 2025-10-27
         | 
| 34 56 |  | 
| 35 57 | 
             
            - TAG: [v1.1.39][1.1.39t]
         | 
| @@ -1181,7 +1203,11 @@ Please file a bug if you notice a violation of semantic versioning. | |
| 1181 1203 | 
             
              - Selecting will run the selected workflow via `act`
         | 
| 1182 1204 | 
             
              - This may move to its own gem in the future.
         | 
| 1183 1205 |  | 
| 1184 | 
            -
            [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1. | 
| 1206 | 
            +
            [Unreleased]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.41...HEAD
         | 
| 1207 | 
            +
            [1.1.41]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.40...v1.1.41
         | 
| 1208 | 
            +
            [1.1.41t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.41
         | 
| 1209 | 
            +
            [1.1.40]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.39...v1.1.40
         | 
| 1210 | 
            +
            [1.1.40t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.40
         | 
| 1185 1211 | 
             
            [1.1.39]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.38...v1.1.39
         | 
| 1186 1212 | 
             
            [1.1.39t]: https://github.com/kettle-rb/kettle-dev/releases/tag/v1.1.39
         | 
| 1187 1213 | 
             
            [1.1.38]: https://github.com/kettle-rb/kettle-dev/compare/v1.1.37...v1.1.38
         | 
    
        data/README.md
    CHANGED
    
    | @@ -770,8 +770,8 @@ See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright | |
| 770 770 | 
             
            ## 🤑 A request for help
         | 
| 771 771 |  | 
| 772 772 | 
             
            Maintainers have teeth and need to pay their dentists.
         | 
| 773 | 
            -
            After getting laid off in an RIF in March and  | 
| 774 | 
            -
            I | 
| 773 | 
            +
            After getting laid off in an RIF in March, and encountering difficulty finding a new one,
         | 
| 774 | 
            +
            I began spending most of my time building open source tools.
         | 
| 775 775 | 
             
            I'm hoping to be able to pay for my kids' health insurance this month,
         | 
| 776 776 | 
             
            so if you value the work I am doing, I need your support.
         | 
| 777 777 | 
             
            Please consider sponsoring me or the project.
         | 
    
        data/README.md.example
    CHANGED
    
    | @@ -343,8 +343,8 @@ See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright | |
| 343 343 | 
             
            ## 🤑 A request for help
         | 
| 344 344 |  | 
| 345 345 | 
             
            Maintainers have teeth and need to pay their dentists.
         | 
| 346 | 
            -
            After getting laid off in an RIF in March and  | 
| 347 | 
            -
            I | 
| 346 | 
            +
            After getting laid off in an RIF in March, and encountering difficulty finding a new one,
         | 
| 347 | 
            +
            I began spending most of my time building open source tools.
         | 
| 348 348 | 
             
            I'm hoping to be able to pay for my kids' health insurance this month,
         | 
| 349 349 | 
             
            so if you value the work I am doing, I need your support.
         | 
| 350 350 | 
             
            Please consider sponsoring me or the project.
         | 
    
        data/README.md.no-osc.example
    CHANGED
    
    | @@ -320,8 +320,8 @@ See [LICENSE.txt][📄license] for the official [Copyright Notice][📄copyright | |
| 320 320 | 
             
            ## 🤑 A request for help
         | 
| 321 321 |  | 
| 322 322 | 
             
            Maintainers have teeth and need to pay their dentists.
         | 
| 323 | 
            -
            After getting laid off in an RIF in March and  | 
| 324 | 
            -
            I | 
| 323 | 
            +
            After getting laid off in an RIF in March, and encountering difficulty finding a new one,
         | 
| 324 | 
            +
            I began spending most of my time building open source tools.
         | 
| 325 325 | 
             
            I'm hoping to be able to pay for my kids' health insurance this month,
         | 
| 326 326 | 
             
            so if you value the work I am doing, I need your support.
         | 
| 327 327 | 
             
            Please consider sponsoring me or the project.
         | 
    
        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.41
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Peter H. Boling
         | 
| @@ -397,10 +397,10 @@ licenses: | |
| 397 397 | 
             
            - MIT
         | 
| 398 398 | 
             
            metadata:
         | 
| 399 399 | 
             
              homepage_uri: https://kettle-dev.galtzo.com/
         | 
| 400 | 
            -
              source_code_uri: https://github.com/kettle-rb/kettle-dev/tree/v1.1. | 
| 401 | 
            -
              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.41
         | 
| 401 | 
            +
              changelog_uri: https://github.com/kettle-rb/kettle-dev/blob/v1.1.41/CHANGELOG.md
         | 
| 402 402 | 
             
              bug_tracker_uri: https://github.com/kettle-rb/kettle-dev/issues
         | 
| 403 | 
            -
              documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1. | 
| 403 | 
            +
              documentation_uri: https://www.rubydoc.info/gems/kettle-dev/1.1.41
         | 
| 404 404 | 
             
              funding_uri: https://github.com/sponsors/pboling
         | 
| 405 405 | 
             
              wiki_uri: https://github.com/kettle-rb/kettle-dev/wiki
         | 
| 406 406 | 
             
              news_uri: https://www.railsbling.com/tags/kettle-dev
         | 
    
        metadata.gz.sig
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
             | 
| 1 | 
            +
            �����8��(��P�)��H���&�>_��x�zq3��C/���6Ƿ�<��� ѥt���g(�a0c�|��T��l�\��^�W;�Nx�����;�/��������u]���u0ג$�#fG�gq�]�3Ǵ����Ûk�Eʐ�+��ԎH2!N<}麉�$�)�͐�·̚���� ���:���Z��U-*�`3c}�Q%�d��c�1�7�-���[�^9���H�,@Qw��̎
         |