azure-storage-blob 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/azure/storage/blob/serialization.rb +3 -0
- data/lib/azure/storage/blob/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b933a6a5dc1fd41bee1a8f450e75d99f5d67785b
|
4
|
+
data.tar.gz: 1edfd140c38f5b2ebb5c7cd139b3b031002ad372
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a61509269f4f4d26eac6ec2a4b57e32078f01d1c990eb4f3ba283ab85920d5a203f37cf99c98ce7e43bf146624a68d2606950d0aa692fabcec90d2c38f3105a7
|
7
|
+
data.tar.gz: 55d93f8d91d6bf42b43883915895fc5d33f011a62e91cf878d177e45d5146f75ba9aeae88e78dea8209dca50f14bed4776481f9bc3e0f1b7e9075c35847c619f
|
@@ -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 = 2 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.2
|
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
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: azure-storage-common
|
@@ -178,7 +178,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
178
|
- !ruby/object:Gem::Version
|
179
179
|
version: '0'
|
180
180
|
requirements: []
|
181
|
-
|
181
|
+
rubyforge_project:
|
182
|
+
rubygems_version: 2.6.14.4
|
182
183
|
signing_key:
|
183
184
|
specification_version: 4
|
184
185
|
summary: Official Ruby client library to consume Azure Storage Blob service
|