fog 0.2.9 → 0.2.10
Sign up to get free protection for your applications and to get access to all the features.
- data/fog.gemspec +2 -2
- data/lib/fog.rb +1 -1
- data/lib/fog/rackspace/requests/files/put_container.rb +2 -2
- metadata +3 -3
data/fog.gemspec
CHANGED
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
|
|
7
7
|
## If your rubyforge_project name is different, then edit it and comment out
|
8
8
|
## the sub! line in the Rakefile
|
9
9
|
s.name = 'fog'
|
10
|
-
s.version = '0.2.
|
11
|
-
s.date = '2010-07-
|
10
|
+
s.version = '0.2.10'
|
11
|
+
s.date = '2010-07-02'
|
12
12
|
s.rubyforge_project = 'fog'
|
13
13
|
|
14
14
|
## Make sure your summary is short. The description may be as long
|
data/lib/fog.rb
CHANGED
@@ -9,11 +9,11 @@ module Fog
|
|
9
9
|
# * name<~String> - Name for container, should be < 256 bytes and must not contain '/'
|
10
10
|
#
|
11
11
|
def put_container(name)
|
12
|
-
response = storage_request(
|
12
|
+
response = storage_request({
|
13
13
|
:expects => [201, 202],
|
14
14
|
:method => 'PUT',
|
15
15
|
:path => CGI.escape(name)
|
16
|
-
)
|
16
|
+
}, false)
|
17
17
|
response
|
18
18
|
end
|
19
19
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 10
|
9
|
+
version: 0.2.10
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- geemus (Wesley Beary)
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-07-
|
17
|
+
date: 2010-07-02 00:00:00 -05:00
|
18
18
|
default_executable: fog
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|