azure-storage-common 1.0.0 → 1.0.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 +4 -4
- data/{common/lib → lib}/azure/storage/common.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/autoload.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/client.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/client_options.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/client_options_error.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/configurable.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/auth/anonymous_signer.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/auth/shared_access_signature.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/auth/shared_access_signature_generator.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/auth/shared_access_signature_signer.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/auth/shared_key.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/autoload.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/error.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/filter/exponential_retry_filter.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/filter/linear_retry_filter.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/filter/retry_filter.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/http_client.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/sr.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/core/utility.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/default.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/access_policy.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/cors.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/cors_rule.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/enumeration_results.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/geo_replication.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/logging.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/metrics.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/retention_policy.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/serialization.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/signed_identifier.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/storage_service.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/storage_service_properties.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/service/storage_service_stats.rb +0 -0
- data/{common/lib → lib}/azure/storage/common/version.rb +1 -1
- metadata +37 -37
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 418e60c16c692153cda5d8d21039e1107cfe4f79
|
|
4
|
+
data.tar.gz: a4a277709da3afd50f6de5160d7a4840829a51e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d666a2c7c2bbf4968832ccc45016e1a01e8ef23bb3d02d0ff0eb065788047516b11f7d737b94c5a60254b8f7ee60d226a5c00016cb6e33d1ab193de76fb98e89
|
|
7
|
+
data.tar.gz: e6fce018e142c87ee59370e4a773ba03d835906e8b49e43f39541968c0b59fd894e2fbb58d42bf7679e16a2ae68637d19817e38b5599161d0c3fbdd267e56612
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -31,7 +31,7 @@ module Azure
|
|
|
31
31
|
# Fields represent the parts defined in http://semver.org/
|
|
32
32
|
MAJOR = 1 unless defined? MAJOR
|
|
33
33
|
MINOR = 0 unless defined? MINOR
|
|
34
|
-
UPDATE =
|
|
34
|
+
UPDATE = 1 unless defined? UPDATE
|
|
35
35
|
|
|
36
36
|
class << self
|
|
37
37
|
# @return [String]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: azure-storage-common
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Microsoft Corporation
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: azure-core
|
|
@@ -154,41 +154,41 @@ executables: []
|
|
|
154
154
|
extensions: []
|
|
155
155
|
extra_rdoc_files: []
|
|
156
156
|
files:
|
|
157
|
-
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
160
|
-
-
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
-
|
|
164
|
-
-
|
|
165
|
-
-
|
|
166
|
-
-
|
|
167
|
-
-
|
|
168
|
-
-
|
|
169
|
-
-
|
|
170
|
-
-
|
|
171
|
-
-
|
|
172
|
-
-
|
|
173
|
-
-
|
|
174
|
-
-
|
|
175
|
-
-
|
|
176
|
-
-
|
|
177
|
-
-
|
|
178
|
-
-
|
|
179
|
-
-
|
|
180
|
-
-
|
|
181
|
-
-
|
|
182
|
-
-
|
|
183
|
-
-
|
|
184
|
-
-
|
|
185
|
-
-
|
|
186
|
-
-
|
|
187
|
-
-
|
|
188
|
-
-
|
|
189
|
-
-
|
|
190
|
-
-
|
|
191
|
-
-
|
|
157
|
+
- "./lib/azure/storage/common.rb"
|
|
158
|
+
- lib/azure/storage/common/autoload.rb
|
|
159
|
+
- lib/azure/storage/common/client.rb
|
|
160
|
+
- lib/azure/storage/common/client_options.rb
|
|
161
|
+
- lib/azure/storage/common/client_options_error.rb
|
|
162
|
+
- lib/azure/storage/common/configurable.rb
|
|
163
|
+
- lib/azure/storage/common/core.rb
|
|
164
|
+
- lib/azure/storage/common/core/auth/anonymous_signer.rb
|
|
165
|
+
- lib/azure/storage/common/core/auth/shared_access_signature.rb
|
|
166
|
+
- lib/azure/storage/common/core/auth/shared_access_signature_generator.rb
|
|
167
|
+
- lib/azure/storage/common/core/auth/shared_access_signature_signer.rb
|
|
168
|
+
- lib/azure/storage/common/core/auth/shared_key.rb
|
|
169
|
+
- lib/azure/storage/common/core/autoload.rb
|
|
170
|
+
- lib/azure/storage/common/core/error.rb
|
|
171
|
+
- lib/azure/storage/common/core/filter/exponential_retry_filter.rb
|
|
172
|
+
- lib/azure/storage/common/core/filter/linear_retry_filter.rb
|
|
173
|
+
- lib/azure/storage/common/core/filter/retry_filter.rb
|
|
174
|
+
- lib/azure/storage/common/core/http_client.rb
|
|
175
|
+
- lib/azure/storage/common/core/sr.rb
|
|
176
|
+
- lib/azure/storage/common/core/utility.rb
|
|
177
|
+
- lib/azure/storage/common/default.rb
|
|
178
|
+
- lib/azure/storage/common/service/access_policy.rb
|
|
179
|
+
- lib/azure/storage/common/service/cors.rb
|
|
180
|
+
- lib/azure/storage/common/service/cors_rule.rb
|
|
181
|
+
- lib/azure/storage/common/service/enumeration_results.rb
|
|
182
|
+
- lib/azure/storage/common/service/geo_replication.rb
|
|
183
|
+
- lib/azure/storage/common/service/logging.rb
|
|
184
|
+
- lib/azure/storage/common/service/metrics.rb
|
|
185
|
+
- lib/azure/storage/common/service/retention_policy.rb
|
|
186
|
+
- lib/azure/storage/common/service/serialization.rb
|
|
187
|
+
- lib/azure/storage/common/service/signed_identifier.rb
|
|
188
|
+
- lib/azure/storage/common/service/storage_service.rb
|
|
189
|
+
- lib/azure/storage/common/service/storage_service_properties.rb
|
|
190
|
+
- lib/azure/storage/common/service/storage_service_stats.rb
|
|
191
|
+
- lib/azure/storage/common/version.rb
|
|
192
192
|
homepage: http://github.com/azure/azure-storage-ruby
|
|
193
193
|
licenses:
|
|
194
194
|
- MIT
|