fog 0.3.27 → 0.3.28
Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock
CHANGED
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.3.
|
11
|
-
s.date = '2010-12-
|
10
|
+
s.version = '0.3.28'
|
11
|
+
s.date = '2010-12-05'
|
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
@@ -10,6 +10,7 @@ module Fog
|
|
10
10
|
|
11
11
|
attribute :architecture
|
12
12
|
attribute :block_device_mapping, :aliases => 'blockDeviceMapping'
|
13
|
+
attribute :description
|
13
14
|
attribute :location, :aliases => 'imageLocation'
|
14
15
|
attribute :owner_id, :aliases => 'imageOwnerId'
|
15
16
|
attribute :state, :aliases => 'imageState'
|
@@ -26,7 +26,7 @@ module Fog
|
|
26
26
|
|
27
27
|
def end_element(name)
|
28
28
|
case name
|
29
|
-
when 'architecture', 'imageId', 'imageLocation', 'imageOwnerId', 'imageState', 'imageType', 'kernelId', 'platform', 'ramdiskId', 'rootDeviceType','rootDeviceName'
|
29
|
+
when 'architecture', 'description', 'imageId', 'imageLocation', 'imageOwnerId', 'imageState', 'imageType', 'kernelId', 'platform', 'ramdiskId', 'rootDeviceType','rootDeviceName'
|
30
30
|
@image[name] = @value
|
31
31
|
when 'blockDeviceMapping'
|
32
32
|
@in_block_device_mapping = false
|
@@ -22,6 +22,7 @@ module Fog
|
|
22
22
|
# * 'imagesSet'<~Array>:
|
23
23
|
# * 'architecture'<~String> - Architecture of the image
|
24
24
|
# * 'blockDeviceMapping'<~Array> - An array of mapped block devices
|
25
|
+
# * 'description'<~String> - Description of image
|
25
26
|
# * 'imageId'<~String> - Id of the image
|
26
27
|
# * 'imageLocation'<~String> - Location of the image
|
27
28
|
# * 'imageOwnerId'<~String> - Id of the owner of the image
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
8
|
+
- 28
|
9
|
+
version: 0.3.28
|
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-12-
|
17
|
+
date: 2010-12-05 00:00:00 -08:00
|
18
18
|
default_executable: fog
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|