simple_stack 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -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, parent, "#{url}/#{item["id"]}"
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, parent, entity_url
28
+ new_item = clazz.new hypervisor, self, entity_url
29
29
  if cacheable?
30
30
  cached_attributes[:items] ||= []
31
31
  cached_attributes[:items] << self
@@ -1,3 +1,3 @@
1
1
  module SimpleStack
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
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.7
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: &2156945680 !ruby/object:Gem::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: *2156945680
24
+ version_requirements: *2153534380
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: httparty
27
- requirement: &2156945240 !ruby/object:Gem::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: *2156945240
35
+ version_requirements: *2153533820
36
36
  description: A Simple Stack gem
37
37
  email:
38
38
  - thiago.morello@locaweb.com.br