acts_as_hashable 1.0.4 → 1.0.5
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/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/acts_as_hashable/hashable.rb +1 -1
- data/lib/acts_as_hashable/version.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: ff6ee1d4bdac43f6841c65d7d4621e9a02dbcfa5abd1284d9f7de45f8da91810
         | 
| 4 | 
            +
              data.tar.gz: 1677ea47f8beee3825a42c03bf49596e1a803b0940e5c405a254112a07f9b3f1
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 3080003d4ee62018ac67e47b5ed03c417526e3ccb3061321cdfbf4b838f4f722ac17b88f9e9496deb810f34b7df05f949b64dfc6de4699b5de2927b14f5c3dc6
         | 
| 7 | 
            +
              data.tar.gz: 1766f6ab2413d21543762de7768910b51c13b69022fb3b3973405845a8e308f843a7cb8b2c5d82bde14a507c7177ce99b32e2cac05cc519912cbaf66c3477711
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    
    
        data/Gemfile.lock
    CHANGED
    
    
    
        data/README.md
    CHANGED
    
    | @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            # Acts as Hashable
         | 
| 2 2 |  | 
| 3 | 
            -
            [](https://badge.fury.io/rb/acts_as_hashable) [](https://travis-ci.org/bluemarblepayroll/acts_as_hashable) [](https://codeclimate.com/github/bluemarblepayroll/acts_as_hashable/maintainability) [](https://codeclimate.com/github/bluemarblepayroll/acts_as_hashable/test_coverage)
         | 
| 3 | 
            +
            [](https://badge.fury.io/rb/acts_as_hashable) [](https://travis-ci.org/bluemarblepayroll/acts_as_hashable) [](https://codeclimate.com/github/bluemarblepayroll/acts_as_hashable/maintainability) [](https://codeclimate.com/github/bluemarblepayroll/acts_as_hashable/test_coverage) [](https://opensource.org/licenses/MIT)
         | 
| 4 4 |  | 
| 5 5 | 
             
            This is a small library that helps increase the pliability of object constructor signatures.
         | 
| 6 6 | 
             
            Instead of instantiating via the constructor, this library can install helper factory
         | 
| @@ -37,7 +37,7 @@ module ActsAsHashable | |
| 37 37 | 
             
                def array(object, nullable: true)
         | 
| 38 38 | 
             
                  objects = object.is_a?(Hash) ? [object] : Array(object)
         | 
| 39 39 |  | 
| 40 | 
            -
                  objects.reject { |o| o  | 
| 40 | 
            +
                  objects.reject { |o| o.is_a?(FalseClass) || o.nil? }
         | 
| 41 41 | 
             
                         .map { |o| make(o, nullable: nullable) }
         | 
| 42 42 | 
             
                end
         | 
| 43 43 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: acts_as_hashable
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1.0. | 
| 4 | 
            +
              version: 1.0.5
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Matthew Ruggio
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2019-02- | 
| 11 | 
            +
            date: 2019-02-05 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: guard-rspec
         |