azure-armrest 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES +4 -0
- data/lib/azure/armrest/configuration.rb +3 -3
- data/lib/azure/armrest/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f4ef3f0022820f1bff78cb13d0be5e2704e1b60
|
4
|
+
data.tar.gz: 1be8e6dc7474255e856886a5f9ad280f69f64e6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecd8bde54c64287d360291fe01e832f76a4328bdcfb162ab07d66afe93ff46df27521eb37e9960f206e31a2a8675054aa4f29fc78e5e24d1c4527381b79a4195
|
7
|
+
data.tar.gz: 51c49f5d53aedd4bf340034352a7abcf389bb703692bae4834bbb8324f1e130cadbacf847525cba6530a110eaa7acf406c533c1c99dfdb39e24e68db03a923a8
|
data/CHANGES
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
= 0.3.5 - 11-Aug-2016
|
2
|
+
* When we added subscription ID validation in 0.3.2 we forgot to set proxy
|
3
|
+
information first. That has been fixed.
|
4
|
+
|
1
5
|
= 0.3.4 - 9-Aug-2016
|
2
6
|
* Modified the StorageAccount#blobs and StorageAccount#containers method. Both
|
3
7
|
now accept a hash of options that you can use to modify the results. Also,
|
@@ -111,6 +111,9 @@ module Azure
|
|
111
111
|
raise ArgumentError, "client_id, client_key, tenant_id and subscription_id must all be specified"
|
112
112
|
end
|
113
113
|
|
114
|
+
# Allows for URI objects or Strings.
|
115
|
+
@proxy = @proxy.to_s if @proxy
|
116
|
+
|
114
117
|
validate_subscription
|
115
118
|
|
116
119
|
if user_token && user_token_expiration
|
@@ -119,9 +122,6 @@ module Azure
|
|
119
122
|
raise ArgumentError, "token and token_expiration must be both specified"
|
120
123
|
end
|
121
124
|
|
122
|
-
# Allows for URI objects or Strings.
|
123
|
-
@proxy = @proxy.to_s if @proxy
|
124
|
-
|
125
125
|
@providers = fetch_providers
|
126
126
|
set_provider_api_versions
|
127
127
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: azure-armrest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2016-08-
|
14
|
+
date: 2016-08-11 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: json
|