waz-storage 1.3.3 → 1.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/waz/storage/core_service.rb +1 -1
- data/waz-storage.gemspec +1 -1
- metadata +2 -2
@@ -115,7 +115,7 @@ module WAZ
|
|
115
115
|
# Generates a Windows Azure Storage call, it internally calls url generation method
|
116
116
|
# and the request generation message.
|
117
117
|
def execute(verb, path, query = {}, headers = {}, payload = nil)
|
118
|
-
escaped_path = path.split("/").map{ | part | CGI.escape(part) }.join("/")
|
118
|
+
escaped_path = (path || "").split("/").map{ | part | CGI.escape(part) }.join("/")
|
119
119
|
url = generate_request_uri(escaped_path, query)
|
120
120
|
request = generate_request(verb, url, headers, payload)
|
121
121
|
|
data/waz-storage.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: waz-storage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-03-
|
12
|
+
date: 2013-03-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rest-client
|