simple_stack 0.0.16 → 0.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ module SimpleStack
2
+ class Disk < Entity
3
+ end
4
+ end
@@ -1,5 +1,9 @@
1
1
  module SimpleStack
2
2
  class Guest < Entity
3
+ def disks
4
+ cached_attributes[:disks] ||= SimpleStack::Collection.new hypervisor, self, "#{url}/disks", SimpleStack::Disk
5
+ end
6
+
3
7
  def network_interfaces
4
8
  cached_attributes[:network_interfaces] ||= SimpleStack::Collection.new hypervisor, self, "#{url}/network_interfaces", SimpleStack::NetworkInterface
5
9
  end
@@ -43,6 +47,13 @@ module SimpleStack
43
47
  snapshot.revert
44
48
  end
45
49
 
50
+ def clone(opts={})
51
+ response = hypervisor.post("#{url}/clone", opts)
52
+ entity_path = response.headers["location"].sub(/^\//, "").sub(/\/$/, "")
53
+ entity_url = "#{connection.url}/#{entity_path}"
54
+ new_item = SimpleStack::Guest.new hypervisor, self, entity_url
55
+ end
56
+
46
57
  def insert_media(media_name, opts={})
47
58
  media_options = opts.merge(:name => media_name)
48
59
  hypervisor.put("#{url}/media_device", media_options)
@@ -1,3 +1,3 @@
1
1
  module SimpleStack
2
- VERSION = "0.0.16"
2
+ VERSION = "0.0.17"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_stack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.16
4
+ version: 0.0.17
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-19 00:00:00.000000000 Z
12
+ date: 2012-07-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
- requirement: &2157058640 !ruby/object:Gem::Requirement
16
+ requirement: &2157336500 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *2157058640
24
+ version_requirements: *2157336500
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: httparty
27
- requirement: &2157057280 !ruby/object:Gem::Requirement
27
+ requirement: &2157336000 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *2157057280
35
+ version_requirements: *2157336000
36
36
  description: A Simple Stack gem
37
37
  email:
38
38
  - thiago.morello@locaweb.com.br
@@ -48,6 +48,7 @@ files:
48
48
  - lib/simple_stack/cacheable.rb
49
49
  - lib/simple_stack/collection.rb
50
50
  - lib/simple_stack/connection.rb
51
+ - lib/simple_stack/disk.rb
51
52
  - lib/simple_stack/entity.rb
52
53
  - lib/simple_stack/exception.rb
53
54
  - lib/simple_stack/guest.rb