realize 1.1.0 → 1.1.1.pre.alpha
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 +6 -0
- data/lib/realize/format/date.rb +2 -4
- data/lib/realize/version.rb +1 -1
- metadata +4 -4
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 0d584e2249098a82c2719e6feb8410a4e21dada80f9ca42978ef316843fb78a5
         | 
| 4 | 
            +
              data.tar.gz: e5537b12e40b3a65a14aef391e864a13e565ef9040986a0a05b2b19f4ea7851a
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 35d3820ea8b76292d3fc52e80c9e6e20f7fc89909c8df4b3910838f0aa1b986391b295d2feb3e161eac4a1816838e6d20c3baef4f26e2dc5456c6434a57f2068
         | 
| 7 | 
            +
              data.tar.gz: 14ac8614d30bbeef7f5adefb5eeffd773997576e640ac9f22c323e5813ebb052d292bff25da8dd2eef8ffabca1bc388af9bda996336ba65667672f03bfdf84e2
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,3 +1,9 @@ | |
| 1 | 
            +
            # 1.1.1 (TBD)
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Fixes:
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            * Do not leverage #to_datetime even if it is available for date parsing.  This removes un-intentional coupling of other libraries into Realize and keeps it based on Ruby standard and core libraries.
         | 
| 6 | 
            +
             | 
| 1 7 | 
             
            # 1.1.0 (June 24th, 2020)
         | 
| 2 8 |  | 
| 3 9 | 
             
            Addition of r/collection/at_index, r/collection/first, and r/collection/last
         | 
    
        data/lib/realize/format/date.rb
    CHANGED
    
    | @@ -30,12 +30,10 @@ module Realize | |
| 30 30 | 
             
                    return nil if value.to_s.empty?
         | 
| 31 31 |  | 
| 32 32 | 
             
                    date_time =
         | 
| 33 | 
            -
                      if  | 
| 34 | 
            -
                        value.to_datetime
         | 
| 35 | 
            -
                      elsif input_format?
         | 
| 33 | 
            +
                      if input_format?
         | 
| 36 34 | 
             
                        DateTime.strptime(value, input_format)
         | 
| 37 35 | 
             
                      else
         | 
| 38 | 
            -
                        DateTime.parse(value)
         | 
| 36 | 
            +
                        DateTime.parse(value.to_s)
         | 
| 39 37 | 
             
                      end
         | 
| 40 38 |  | 
| 41 39 | 
             
                    date_time.strftime(output_format)
         | 
    
        data/lib/realize/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: realize
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1.1. | 
| 4 | 
            +
              version: 1.1.1.pre.alpha
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Matthew Ruggio
         | 
| @@ -9,7 +9,7 @@ authors: | |
| 9 9 | 
             
            autorequire: 
         | 
| 10 10 | 
             
            bindir: exe
         | 
| 11 11 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date: 2020- | 
| 12 | 
            +
            date: 2020-09-09 00:00:00.000000000 Z
         | 
| 13 13 | 
             
            dependencies:
         | 
| 14 14 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 15 | 
             
              name: acts_as_hashable
         | 
| @@ -211,9 +211,9 @@ required_ruby_version: !ruby/object:Gem::Requirement | |
| 211 211 | 
             
                  version: '2.5'
         | 
| 212 212 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 213 213 | 
             
              requirements:
         | 
| 214 | 
            -
              - - " | 
| 214 | 
            +
              - - ">"
         | 
| 215 215 | 
             
                - !ruby/object:Gem::Version
         | 
| 216 | 
            -
                  version:  | 
| 216 | 
            +
                  version: 1.3.1
         | 
| 217 217 | 
             
            requirements: []
         | 
| 218 218 | 
             
            rubygems_version: 3.0.3
         | 
| 219 219 | 
             
            signing_key: 
         |