postshift 0.2.0 → 0.2.1
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
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 7d56e8e34b5465bcc83091a128c2357491865e88
         | 
| 4 | 
            +
              data.tar.gz: 94549f9d870f3413c55f1e81ed37f2645b18bad5
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 9b8cc4652f550d94ea5036a311f864f49e8188fa93070e9be5dcc416b4c5566984070d1d4cc5340413d17c728681ef383621981c54d3c0344c380ee127c1ab6b
         | 
| 7 | 
            +
              data.tar.gz: ba0f86afb60821ac0dfc69f58752ed13549b75747c23e0e44fe3e26a14a8df482ecd881ff613ae78f915237726e7b05a0f6a78bfa0a97540187e1eaa4caf8695
         | 
| @@ -117,6 +117,17 @@ module ActiveRecord | |
| 117 117 | 
             
                    Float::INFINITY
         | 
| 118 118 | 
             
                  end
         | 
| 119 119 |  | 
| 120 | 
            +
                  def reset!
         | 
| 121 | 
            +
                    @lock.synchronize do
         | 
| 122 | 
            +
                      clear_cache!
         | 
| 123 | 
            +
                      reset_transaction
         | 
| 124 | 
            +
                      unless @connection.transaction_status == ::PG::PQTRANS_IDLE
         | 
| 125 | 
            +
                        @connection.query "ROLLBACK"
         | 
| 126 | 
            +
                      end
         | 
| 127 | 
            +
                      configure_connection
         | 
| 128 | 
            +
                    end
         | 
| 129 | 
            +
                  end
         | 
| 130 | 
            +
             | 
| 120 131 | 
             
                private
         | 
| 121 132 |  | 
| 122 133 | 
             
                  # Copied from PostgreSQL with minor registration changes.  If broken out, could override segments, etc
         | 
    
        data/lib/postshift/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: postshift
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.2. | 
| 4 | 
            +
              version: 0.2.1
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Dave Krupinski
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: exe
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2018-04-24 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: pg
         |