azure-storage-table 1.0.0 → 2.0.3
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/{table/lib → lib}/azure/storage/table/auth/shared_key.rb +69 -69
 - data/{table/lib → lib}/azure/storage/table/autoload.rb +48 -48
 - data/{table/lib → lib}/azure/storage/table/batch.rb +366 -366
 - data/{table/lib → lib}/azure/storage/table/batch_response.rb +133 -133
 - data/{table/lib → lib}/azure/storage/table/default.rb +165 -165
 - data/{table/lib → lib}/azure/storage/table/edmtype.rb +134 -134
 - data/{table/lib → lib}/azure/storage/table/entity.rb +39 -39
 - data/{table/lib → lib}/azure/storage/table/guid.rb +35 -35
 - data/{table/lib → lib}/azure/storage/table/query.rb +118 -118
 - data/{table/lib → lib}/azure/storage/table/serialization.rb +116 -116
 - data/{table/lib → lib}/azure/storage/table/table_service.rb +778 -775
 - data/{table/lib → lib}/azure/storage/table/version.rb +49 -49
 - data/{table/lib → lib}/azure/storage/table.rb +26 -26
 - metadata +23 -43
 
| 
         @@ -1,49 +1,49 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # frozen_string_literal: true
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            #-------------------------------------------------------------------------
         
     | 
| 
       4 
     | 
    
         
            -
            # # Copyright (c) Microsoft and contributors. All rights reserved.
         
     | 
| 
       5 
     | 
    
         
            -
            #
         
     | 
| 
       6 
     | 
    
         
            -
            # The MIT License(MIT)
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
            # Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
       9 
     | 
    
         
            -
            # of this software and associated documentation files(the "Software"), to deal
         
     | 
| 
       10 
     | 
    
         
            -
            # in the Software without restriction, including without limitation the rights
         
     | 
| 
       11 
     | 
    
         
            -
            # to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
         
     | 
| 
       12 
     | 
    
         
            -
            # copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
       13 
     | 
    
         
            -
            # furnished to do so, subject to the following conditions :
         
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
            # The above copyright notice and this permission notice shall be included in
         
     | 
| 
       16 
     | 
    
         
            -
            # all copies or substantial portions of the Software.
         
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
            # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
       19 
     | 
    
         
            -
            # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
       20 
     | 
    
         
            -
            # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
         
     | 
| 
       21 
     | 
    
         
            -
            # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
       22 
     | 
    
         
            -
            # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
       23 
     | 
    
         
            -
            # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
         
     | 
| 
       24 
     | 
    
         
            -
            # THE SOFTWARE.
         
     | 
| 
       25 
     | 
    
         
            -
            #--------------------------------------------------------------------------
         
     | 
| 
       26 
     | 
    
         
            -
             
     | 
| 
       27 
     | 
    
         
            -
            module Azure
         
     | 
| 
       28 
     | 
    
         
            -
              module Storage
         
     | 
| 
       29 
     | 
    
         
            -
                module Table
         
     | 
| 
       30 
     | 
    
         
            -
                  class Version
         
     | 
| 
       31 
     | 
    
         
            -
                    # Fields represent the parts defined in http://semver.org/
         
     | 
| 
       32 
     | 
    
         
            -
                    MAJOR =  
     | 
| 
       33 
     | 
    
         
            -
                    MINOR = 0 unless defined? MINOR
         
     | 
| 
       34 
     | 
    
         
            -
                    UPDATE =  
     | 
| 
       35 
     | 
    
         
            -
             
     | 
| 
       36 
     | 
    
         
            -
                    class << self
         
     | 
| 
       37 
     | 
    
         
            -
                      # @return [String]
         
     | 
| 
       38 
     | 
    
         
            -
                      def to_s
         
     | 
| 
       39 
     | 
    
         
            -
                        [MAJOR, MINOR, UPDATE].compact.join(".")
         
     | 
| 
       40 
     | 
    
         
            -
                      end
         
     | 
| 
       41 
     | 
    
         
            -
             
     | 
| 
       42 
     | 
    
         
            -
                      def to_uas
         
     | 
| 
       43 
     | 
    
         
            -
                        [MAJOR, MINOR, UPDATE].join(".")
         
     | 
| 
       44 
     | 
    
         
            -
                      end
         
     | 
| 
       45 
     | 
    
         
            -
                    end
         
     | 
| 
       46 
     | 
    
         
            -
                  end
         
     | 
| 
       47 
     | 
    
         
            -
                end
         
     | 
| 
       48 
     | 
    
         
            -
              end
         
     | 
| 
       49 
     | 
    
         
            -
            end
         
     | 
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            #-------------------------------------------------------------------------
         
     | 
| 
      
 4 
     | 
    
         
            +
            # # Copyright (c) Microsoft and contributors. All rights reserved.
         
     | 
| 
      
 5 
     | 
    
         
            +
            #
         
     | 
| 
      
 6 
     | 
    
         
            +
            # The MIT License(MIT)
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            # Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
      
 9 
     | 
    
         
            +
            # of this software and associated documentation files(the "Software"), to deal
         
     | 
| 
      
 10 
     | 
    
         
            +
            # in the Software without restriction, including without limitation the rights
         
     | 
| 
      
 11 
     | 
    
         
            +
            # to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
         
     | 
| 
      
 12 
     | 
    
         
            +
            # copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
      
 13 
     | 
    
         
            +
            # furnished to do so, subject to the following conditions :
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            # The above copyright notice and this permission notice shall be included in
         
     | 
| 
      
 16 
     | 
    
         
            +
            # all copies or substantial portions of the Software.
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
      
 19 
     | 
    
         
            +
            # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
      
 20 
     | 
    
         
            +
            # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
         
     | 
| 
      
 21 
     | 
    
         
            +
            # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
      
 22 
     | 
    
         
            +
            # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
      
 23 
     | 
    
         
            +
            # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
         
     | 
| 
      
 24 
     | 
    
         
            +
            # THE SOFTWARE.
         
     | 
| 
      
 25 
     | 
    
         
            +
            #--------------------------------------------------------------------------
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            module Azure
         
     | 
| 
      
 28 
     | 
    
         
            +
              module Storage
         
     | 
| 
      
 29 
     | 
    
         
            +
                module Table
         
     | 
| 
      
 30 
     | 
    
         
            +
                  class Version
         
     | 
| 
      
 31 
     | 
    
         
            +
                    # Fields represent the parts defined in http://semver.org/
         
     | 
| 
      
 32 
     | 
    
         
            +
                    MAJOR = 2 unless defined? MAJOR
         
     | 
| 
      
 33 
     | 
    
         
            +
                    MINOR = 0 unless defined? MINOR
         
     | 
| 
      
 34 
     | 
    
         
            +
                    UPDATE = 3 unless defined? UPDATE
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                    class << self
         
     | 
| 
      
 37 
     | 
    
         
            +
                      # @return [String]
         
     | 
| 
      
 38 
     | 
    
         
            +
                      def to_s
         
     | 
| 
      
 39 
     | 
    
         
            +
                        [MAJOR, MINOR, UPDATE].compact.join(".")
         
     | 
| 
      
 40 
     | 
    
         
            +
                      end
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
                      def to_uas
         
     | 
| 
      
 43 
     | 
    
         
            +
                        [MAJOR, MINOR, UPDATE].join(".")
         
     | 
| 
      
 44 
     | 
    
         
            +
                      end
         
     | 
| 
      
 45 
     | 
    
         
            +
                    end
         
     | 
| 
      
 46 
     | 
    
         
            +
                  end
         
     | 
| 
      
 47 
     | 
    
         
            +
                end
         
     | 
| 
      
 48 
     | 
    
         
            +
              end
         
     | 
| 
      
 49 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -1,26 +1,26 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # frozen_string_literal: true
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            #-------------------------------------------------------------------------
         
     | 
| 
       4 
     | 
    
         
            -
            # # Copyright (c) Microsoft and contributors. All rights reserved.
         
     | 
| 
       5 
     | 
    
         
            -
            #
         
     | 
| 
       6 
     | 
    
         
            -
            # The MIT License(MIT)
         
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
            # Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
       9 
     | 
    
         
            -
            # of this software and associated documentation files(the "Software"), to deal
         
     | 
| 
       10 
     | 
    
         
            -
            # in the Software without restriction, including without limitation the rights
         
     | 
| 
       11 
     | 
    
         
            -
            # to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
         
     | 
| 
       12 
     | 
    
         
            -
            # copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
       13 
     | 
    
         
            -
            # furnished to do so, subject to the following conditions :
         
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
            # The above copyright notice and this permission notice shall be included in
         
     | 
| 
       16 
     | 
    
         
            -
            # all copies or substantial portions of the Software.
         
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
            # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
       19 
     | 
    
         
            -
            # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
       20 
     | 
    
         
            -
            # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
         
     | 
| 
       21 
     | 
    
         
            -
            # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
       22 
     | 
    
         
            -
            # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
       23 
     | 
    
         
            -
            # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
         
     | 
| 
       24 
     | 
    
         
            -
            # THE SOFTWARE.
         
     | 
| 
       25 
     | 
    
         
            -
            #--------------------------------------------------------------------------
         
     | 
| 
       26 
     | 
    
         
            -
            require "azure/storage/table/autoload"
         
     | 
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            #-------------------------------------------------------------------------
         
     | 
| 
      
 4 
     | 
    
         
            +
            # # Copyright (c) Microsoft and contributors. All rights reserved.
         
     | 
| 
      
 5 
     | 
    
         
            +
            #
         
     | 
| 
      
 6 
     | 
    
         
            +
            # The MIT License(MIT)
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            # Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
      
 9 
     | 
    
         
            +
            # of this software and associated documentation files(the "Software"), to deal
         
     | 
| 
      
 10 
     | 
    
         
            +
            # in the Software without restriction, including without limitation the rights
         
     | 
| 
      
 11 
     | 
    
         
            +
            # to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
         
     | 
| 
      
 12 
     | 
    
         
            +
            # copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
      
 13 
     | 
    
         
            +
            # furnished to do so, subject to the following conditions :
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            # The above copyright notice and this permission notice shall be included in
         
     | 
| 
      
 16 
     | 
    
         
            +
            # all copies or substantial portions of the Software.
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
      
 19 
     | 
    
         
            +
            # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
      
 20 
     | 
    
         
            +
            # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
         
     | 
| 
      
 21 
     | 
    
         
            +
            # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
      
 22 
     | 
    
         
            +
            # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
      
 23 
     | 
    
         
            +
            # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
         
     | 
| 
      
 24 
     | 
    
         
            +
            # THE SOFTWARE.
         
     | 
| 
      
 25 
     | 
    
         
            +
            #--------------------------------------------------------------------------
         
     | 
| 
      
 26 
     | 
    
         
            +
            require "azure/storage/table/autoload"
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,63 +1,43 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: azure-storage-table
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version:  
     | 
| 
      
 4 
     | 
    
         
            +
              version: 2.0.3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Microsoft Corporation
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date:  
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2021-10-28 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
     | 
    
         
            -
              name: azure-core
         
     | 
| 
       15 
     | 
    
         
            -
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       16 
     | 
    
         
            -
                requirements:
         
     | 
| 
       17 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       18 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       19 
     | 
    
         
            -
                    version: 0.1.13
         
     | 
| 
       20 
     | 
    
         
            -
              type: :runtime
         
     | 
| 
       21 
     | 
    
         
            -
              prerelease: false
         
     | 
| 
       22 
     | 
    
         
            -
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       23 
     | 
    
         
            -
                requirements:
         
     | 
| 
       24 
     | 
    
         
            -
                - - "~>"
         
     | 
| 
       25 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       26 
     | 
    
         
            -
                    version: 0.1.13
         
     | 
| 
       27 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       28 
14 
     | 
    
         
             
              name: azure-storage-common
         
     | 
| 
       29 
15 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       30 
16 
     | 
    
         
             
                requirements:
         
     | 
| 
       31 
17 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       32 
18 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       33 
     | 
    
         
            -
                    version: ' 
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '2.0'
         
     | 
| 
       34 
20 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       35 
21 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       36 
22 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       37 
23 
     | 
    
         
             
                requirements:
         
     | 
| 
       38 
24 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       39 
25 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       40 
     | 
    
         
            -
                    version: ' 
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '2.0'
         
     | 
| 
       41 
27 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       42 
28 
     | 
    
         
             
              name: nokogiri
         
     | 
| 
       43 
29 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       44 
30 
     | 
    
         
             
                requirements:
         
     | 
| 
       45 
31 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       46 
32 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       47 
     | 
    
         
            -
                    version:  
     | 
| 
       48 
     | 
    
         
            -
                - - ">="
         
     | 
| 
       49 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       50 
     | 
    
         
            -
                    version: 1.6.8
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: 1.11.0.rc2
         
     | 
| 
       51 
34 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       52 
35 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       53 
36 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       54 
37 
     | 
    
         
             
                requirements:
         
     | 
| 
       55 
38 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       56 
39 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       57 
     | 
    
         
            -
                    version:  
     | 
| 
       58 
     | 
    
         
            -
                - - ">="
         
     | 
| 
       59 
     | 
    
         
            -
                  - !ruby/object:Gem::Version
         
     | 
| 
       60 
     | 
    
         
            -
                    version: 1.6.8
         
     | 
| 
      
 40 
     | 
    
         
            +
                    version: 1.11.0.rc2
         
     | 
| 
       61 
41 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       62 
42 
     | 
    
         
             
              name: dotenv
         
     | 
| 
       63 
43 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -120,14 +100,14 @@ dependencies: 
     | 
|
| 
       120 
100 
     | 
    
         
             
                requirements:
         
     | 
| 
       121 
101 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       122 
102 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       123 
     | 
    
         
            -
                    version: ' 
     | 
| 
      
 103 
     | 
    
         
            +
                    version: '13.0'
         
     | 
| 
       124 
104 
     | 
    
         
             
              type: :development
         
     | 
| 
       125 
105 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       126 
106 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       127 
107 
     | 
    
         
             
                requirements:
         
     | 
| 
       128 
108 
     | 
    
         
             
                - - "~>"
         
     | 
| 
       129 
109 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       130 
     | 
    
         
            -
                    version: ' 
     | 
| 
      
 110 
     | 
    
         
            +
                    version: '13.0'
         
     | 
| 
       131 
111 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       132 
112 
     | 
    
         
             
              name: timecop
         
     | 
| 
       133 
113 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -168,19 +148,19 @@ executables: [] 
     | 
|
| 
       168 
148 
     | 
    
         
             
            extensions: []
         
     | 
| 
       169 
149 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       170 
150 
     | 
    
         
             
            files:
         
     | 
| 
       171 
     | 
    
         
            -
            -  
     | 
| 
       172 
     | 
    
         
            -
            -  
     | 
| 
       173 
     | 
    
         
            -
            -  
     | 
| 
       174 
     | 
    
         
            -
            -  
     | 
| 
       175 
     | 
    
         
            -
            -  
     | 
| 
       176 
     | 
    
         
            -
            -  
     | 
| 
       177 
     | 
    
         
            -
            -  
     | 
| 
       178 
     | 
    
         
            -
            -  
     | 
| 
       179 
     | 
    
         
            -
            -  
     | 
| 
       180 
     | 
    
         
            -
            -  
     | 
| 
       181 
     | 
    
         
            -
            -  
     | 
| 
       182 
     | 
    
         
            -
            -  
     | 
| 
       183 
     | 
    
         
            -
            -  
     | 
| 
      
 151 
     | 
    
         
            +
            - "./lib/azure/storage/table.rb"
         
     | 
| 
      
 152 
     | 
    
         
            +
            - lib/azure/storage/table/auth/shared_key.rb
         
     | 
| 
      
 153 
     | 
    
         
            +
            - lib/azure/storage/table/autoload.rb
         
     | 
| 
      
 154 
     | 
    
         
            +
            - lib/azure/storage/table/batch.rb
         
     | 
| 
      
 155 
     | 
    
         
            +
            - lib/azure/storage/table/batch_response.rb
         
     | 
| 
      
 156 
     | 
    
         
            +
            - lib/azure/storage/table/default.rb
         
     | 
| 
      
 157 
     | 
    
         
            +
            - lib/azure/storage/table/edmtype.rb
         
     | 
| 
      
 158 
     | 
    
         
            +
            - lib/azure/storage/table/entity.rb
         
     | 
| 
      
 159 
     | 
    
         
            +
            - lib/azure/storage/table/guid.rb
         
     | 
| 
      
 160 
     | 
    
         
            +
            - lib/azure/storage/table/query.rb
         
     | 
| 
      
 161 
     | 
    
         
            +
            - lib/azure/storage/table/serialization.rb
         
     | 
| 
      
 162 
     | 
    
         
            +
            - lib/azure/storage/table/table_service.rb
         
     | 
| 
      
 163 
     | 
    
         
            +
            - lib/azure/storage/table/version.rb
         
     | 
| 
       184 
164 
     | 
    
         
             
            homepage: http://github.com/azure/azure-storage-ruby
         
     | 
| 
       185 
165 
     | 
    
         
             
            licenses:
         
     | 
| 
       186 
166 
     | 
    
         
             
            - MIT
         
     | 
| 
         @@ -193,7 +173,7 @@ required_ruby_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       193 
173 
     | 
    
         
             
              requirements:
         
     | 
| 
       194 
174 
     | 
    
         
             
              - - ">="
         
     | 
| 
       195 
175 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       196 
     | 
    
         
            -
                  version:  
     | 
| 
      
 176 
     | 
    
         
            +
                  version: 2.3.0
         
     | 
| 
       197 
177 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       198 
178 
     | 
    
         
             
              requirements:
         
     | 
| 
       199 
179 
     | 
    
         
             
              - - ">="
         
     | 
| 
         @@ -201,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       201 
181 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       202 
182 
     | 
    
         
             
            requirements: []
         
     | 
| 
       203 
183 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       204 
     | 
    
         
            -
            rubygems_version: 2. 
     | 
| 
      
 184 
     | 
    
         
            +
            rubygems_version: 2.6.14.4
         
     | 
| 
       205 
185 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       206 
186 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       207 
187 
     | 
    
         
             
            summary: Official Ruby client library to consume Azure Storage Table service
         
     |