fog 0.0.15 → 0.0.16
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/fog.gemspec +1 -1
- data/lib/fog/rackspace/models/servers/servers.rb +3 -3
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.16
|
data/fog.gemspec
CHANGED
@@ -34,11 +34,11 @@ module Fog
|
|
34
34
|
nil
|
35
35
|
end
|
36
36
|
|
37
|
-
def new
|
38
|
-
Fog::Rackspace::Servers::Server.new(
|
37
|
+
def new(attributes = {})
|
38
|
+
Fog::Rackspace::Servers::Server.new({
|
39
39
|
:connection => connection,
|
40
40
|
:servers => self
|
41
|
-
)
|
41
|
+
}.merge!(attributes))
|
42
42
|
end
|
43
43
|
|
44
44
|
def reload
|