linode 0.7.6 → 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ n.n.n / 2011-10-17
3
+ ==================
4
+
5
+ * Adds support for linode.ip.addprivate API method (thanks to Adam Durana)
6
+
2
7
  0.7.6 / 2011-10-17
3
8
  ==================
4
9
 
data/README CHANGED
@@ -145,3 +145,4 @@ CREDITS:
145
145
  - Thanks to Aaron Hamid for updates for RSpec 2 and work on user.getapikey + username/password initialization.
146
146
  - Thanks to Musfuut (github: musfuut) for diagnosing and recommending a fix for OpenStruct and 'type' data members in Linode returned results.
147
147
  - Thanks to mihaibirsan (github: mihaibirsan) for diagnosing a problem with dependencies on the 'crack' library.
148
+ - Thanks to Adam Durana (github: durana) for adding support for linode.ip.addprivate.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.6
1
+ 0.7.7
@@ -1,4 +1,4 @@
1
1
  class Linode::Linode::Ip < Linode
2
2
  documentation_category 'linode'
3
- has_method :list
3
+ has_method :list, :addprivate
4
4
  end
data/linode.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "linode"
8
- s.version = "0.7.6"
8
+ s.version = "0.7.7"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Rick Bradley"]
@@ -11,7 +11,7 @@ describe Linode::Linode::Ip do
11
11
  @linode.class.should < Linode
12
12
  end
13
13
 
14
- %w(list).each do |action|
14
+ %w(list addprivate).each do |action|
15
15
  it "should allow accessing the #{action} API" do
16
16
  @linode.should respond_to(action.to_sym)
17
17
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linode
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 7
9
- - 6
10
- version: 0.7.6
9
+ - 7
10
+ version: 0.7.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Rick Bradley