azure-storage-blob 2.0.1 → 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/lib/azure/storage/blob/serialization.rb +3 -0
- data/lib/azure/storage/blob/version.rb +1 -1
- metadata +14 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1450a2bef8b99c5aaf74848e8720523a89b15c0d6b0edee6940196486dc1e952
|
|
4
|
+
data.tar.gz: 338c9ecf38a8a2a5bb938fcee0b9d31e0546c7f097802ac365a50e9759765b5a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b94f26133f08913397eff90b0bcb98b6d98e00deba59bf0ee2e5de0d63a41a6a53c3b33445ba78e27881ad2b4539b58576c82e26586fe3d77e68b820ea755a37
|
|
7
|
+
data.tar.gz: c85c12bd39308170140511294976a0a633bc246dd18f17efad7b884a2dcd0f5ae90fd5fd635e8a9d5ed87c8187808eef64e7f5d0851f96e1894d35e7872a6c80
|
|
@@ -199,6 +199,9 @@ module Azure::Storage
|
|
|
199
199
|
|
|
200
200
|
props = {}
|
|
201
201
|
|
|
202
|
+
props[:access_tier] = (xml > "AccessTier").text if (xml > "AccessTier").any?
|
|
203
|
+
props[:access_tier_change_time] = (xml > "AccessTierChangeTime").text if (xml > "AccessTierChangeTime").any?
|
|
204
|
+
props[:creation_Time] = (xml > "Creation-Time").text if (xml > "Creation-Time").any?
|
|
202
205
|
props[:last_modified] = (xml > "Last-Modified").text if (xml > "Last-Modified").any?
|
|
203
206
|
props[:etag] = xml.Etag.text if (xml > "Etag").any?
|
|
204
207
|
props[:lease_status] = xml.LeaseStatus.text if (xml > "LeaseStatus").any?
|
|
@@ -31,7 +31,7 @@ module Azure
|
|
|
31
31
|
# Fields represent the parts defined in http://semver.org/
|
|
32
32
|
MAJOR = 2 unless defined? MAJOR
|
|
33
33
|
MINOR = 0 unless defined? MINOR
|
|
34
|
-
UPDATE =
|
|
34
|
+
UPDATE = 3 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-blob
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Microsoft Corporation
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-12-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: azure-storage-common
|
|
@@ -30,14 +30,20 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1
|
|
33
|
+
version: '1'
|
|
34
|
+
- - ">="
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: 1.10.8
|
|
34
37
|
type: :runtime
|
|
35
38
|
prerelease: false
|
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
40
|
requirements:
|
|
38
41
|
- - "~>"
|
|
39
42
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 1
|
|
43
|
+
version: '1'
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 1.10.8
|
|
41
47
|
- !ruby/object:Gem::Dependency
|
|
42
48
|
name: dotenv
|
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -163,7 +169,7 @@ homepage: http://github.com/azure/azure-storage-ruby
|
|
|
163
169
|
licenses:
|
|
164
170
|
- MIT
|
|
165
171
|
metadata: {}
|
|
166
|
-
post_install_message:
|
|
172
|
+
post_install_message:
|
|
167
173
|
rdoc_options: []
|
|
168
174
|
require_paths:
|
|
169
175
|
- lib
|
|
@@ -178,8 +184,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
178
184
|
- !ruby/object:Gem::Version
|
|
179
185
|
version: '0'
|
|
180
186
|
requirements: []
|
|
181
|
-
rubygems_version: 3.0.
|
|
182
|
-
signing_key:
|
|
187
|
+
rubygems_version: 3.0.3.1
|
|
188
|
+
signing_key:
|
|
183
189
|
specification_version: 4
|
|
184
190
|
summary: Official Ruby client library to consume Azure Storage Blob service
|
|
185
191
|
test_files: []
|