tablesalt 0.27.0 → 0.28.0
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
- data/README.md +24 -1
- data/lib/tablesalt/class_pass.rb +1 -0
- data/lib/tablesalt/version.rb +1 -1
- metadata +7 -7
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: dab94c5ff40879937bae6a77ee8352adec9d4de48f7495360dc2507ef500dc77
         | 
| 4 | 
            +
              data.tar.gz: d3652975e9d346f035837fcfdf0bb16c18a3564d92af422d4293dee3f2c341fb
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: cf7b8bc17d55e8e19fcdd37e4bbbdc1d7e55682742118ae53a80556d6505111c44748dd131b9186de1490d91b1ae0ea36a62e85778832f4bff1f8eece6662f55
         | 
| 7 | 
            +
              data.tar.gz: 4f47fd87b9e5a97bf649269e7a8f1d4710b6b57366eaa7be24dfba53e328ac875b967acee2e36264a824cff970e3e0a3972c2ba5d232018d13cd6c8fdd6c4ec0
         | 
    
        data/README.md
    CHANGED
    
    | @@ -33,7 +33,30 @@ Or install it yourself as: | |
| 33 33 |  | 
| 34 34 | 
             
            ### ClassPass
         | 
| 35 35 |  | 
| 36 | 
            -
             | 
| 36 | 
            +
            Utility for creating single-ingress service objects.
         | 
| 37 | 
            +
             | 
| 38 | 
            +
            ```ruby
         | 
| 39 | 
            +
            class MyClass
         | 
| 40 | 
            +
              class << self
         | 
| 41 | 
            +
                def call(foo:, bar:)
         | 
| 42 | 
            +
                  new(foo: foo, bar: bar).call
         | 
| 43 | 
            +
                end
         | 
| 44 | 
            +
              end
         | 
| 45 | 
            +
              
         | 
| 46 | 
            +
              def call
         | 
| 47 | 
            +
                ...
         | 
| 48 | 
            +
            end
         | 
| 49 | 
            +
             | 
| 50 | 
            +
            # Can be rewritten as:
         | 
| 51 | 
            +
            class MyClass
         | 
| 52 | 
            +
              include ClassPass
         | 
| 53 | 
            +
              
         | 
| 54 | 
            +
              class_pass_method :call
         | 
| 55 | 
            +
              
         | 
| 56 | 
            +
              def call
         | 
| 57 | 
            +
                ...
         | 
| 58 | 
            +
            end
         | 
| 59 | 
            +
            ```
         | 
| 37 60 |  | 
| 38 61 | 
             
            ### DSLAccessor
         | 
| 39 62 |  | 
    
        data/lib/tablesalt/class_pass.rb
    CHANGED
    
    
    
        data/lib/tablesalt/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: tablesalt
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.28.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Jordan Minneti
         | 
| 8 | 
            -
            autorequire: | 
| 8 | 
            +
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2022-04-06 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: activesupport
         | 
| @@ -76,8 +76,8 @@ metadata: | |
| 76 76 | 
             
              homepage_uri: https://github.com/Freshly/spicerack/tree/main/tablesalt
         | 
| 77 77 | 
             
              source_code_uri: https://github.com/Freshly/spicerack/tree/main/tablesalt
         | 
| 78 78 | 
             
              changelog_uri: https://github.com/Freshly/spicerack/blob/main/tablesalt/CHANGELOG.md
         | 
| 79 | 
            -
              documentation_uri: https://www.rubydoc.info/gems/tablesalt/0. | 
| 80 | 
            -
            post_install_message: | 
| 79 | 
            +
              documentation_uri: https://www.rubydoc.info/gems/tablesalt/0.28.0
         | 
| 80 | 
            +
            post_install_message:
         | 
| 81 81 | 
             
            rdoc_options: []
         | 
| 82 82 | 
             
            require_paths:
         | 
| 83 83 | 
             
            - lib
         | 
| @@ -92,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 92 92 | 
             
                - !ruby/object:Gem::Version
         | 
| 93 93 | 
             
                  version: '0'
         | 
| 94 94 | 
             
            requirements: []
         | 
| 95 | 
            -
            rubygems_version: 3. | 
| 96 | 
            -
            signing_key: | 
| 95 | 
            +
            rubygems_version: 3.3.9
         | 
| 96 | 
            +
            signing_key:
         | 
| 97 97 | 
             
            specification_version: 4
         | 
| 98 98 | 
             
            summary: Miscellaneous helper modules, POROs, and more, that standardize common behavior
         | 
| 99 99 | 
             
            test_files: []
         |