simple_stack 0.0.7 → 0.0.8
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.
- data/lib/simple_stack/collection.rb +3 -3
- data/lib/simple_stack/version.rb +1 -1
- metadata +5 -5
@@ -13,19 +13,19 @@ module SimpleStack
|
|
13
13
|
|
14
14
|
def to_a
|
15
15
|
cached_attributes[:items] ||= hypervisor.get(url).map do |item|
|
16
|
-
clazz.new hypervisor,
|
16
|
+
clazz.new hypervisor, self, "#{url}/#{item["id"]}"
|
17
17
|
end
|
18
18
|
end
|
19
19
|
|
20
20
|
def find(id)
|
21
|
-
clazz.new hypervisor, "#{url}/#{id}"
|
21
|
+
clazz.new hypervisor, self, "#{url}/#{id}"
|
22
22
|
end
|
23
23
|
|
24
24
|
def create(options={})
|
25
25
|
response = hypervisor.post(url, options)
|
26
26
|
entity_path = response.headers["location"].sub(/^\//, "").sub(/\/$/, "")
|
27
27
|
entity_url = "#{connection.url}/#{entity_path}"
|
28
|
-
new_item = clazz.new hypervisor,
|
28
|
+
new_item = clazz.new hypervisor, self, entity_url
|
29
29
|
if cacheable?
|
30
30
|
cached_attributes[:items] ||= []
|
31
31
|
cached_attributes[:items] << self
|
data/lib/simple_stack/version.rb
CHANGED
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.
|
4
|
+
version: 0.0.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2012-06-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
16
|
-
requirement: &
|
16
|
+
requirement: &2153534380 !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: *
|
24
|
+
version_requirements: *2153534380
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: httparty
|
27
|
-
requirement: &
|
27
|
+
requirement: &2153533820 !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: *
|
35
|
+
version_requirements: *2153533820
|
36
36
|
description: A Simple Stack gem
|
37
37
|
email:
|
38
38
|
- thiago.morello@locaweb.com.br
|