linode 0.7.3 → 0.7.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +1 -1
- data/VERSION +1 -1
- data/linode.gemspec +20 -2
- metadata +21 -6
data/CHANGELOG
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
0.7.3 / 2011-08-20
|
3
3
|
==================
|
4
4
|
|
5
|
-
* fixing OStruct issue with #type calls on returned result data (thanks to musfuut <
|
5
|
+
* fixing OStruct issue with #type calls on returned result data (thanks to musfuut <musfuut_rb@goldentog.com>)
|
6
6
|
* set up for travis-CI integration builds
|
7
7
|
|
8
8
|
0.7.1 / 2011-07-16
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.7.
|
1
|
+
0.7.4
|
data/linode.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{linode}
|
8
|
-
s.version = "0.7.
|
8
|
+
s.version = "0.7.4"
|
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"]
|
12
|
-
s.date = %q{2011-08-
|
12
|
+
s.date = %q{2011-08-23}
|
13
13
|
s.description = %q{This is a wrapper around Linode's automation facilities.}
|
14
14
|
s.email = %q{rick@rickbradley.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -63,6 +63,24 @@ Gem::Specification.new do |s|
|
|
63
63
|
s.require_paths = ["lib"]
|
64
64
|
s.rubygems_version = %q{1.3.7}
|
65
65
|
s.summary = %q{a Ruby wrapper for the Linode API}
|
66
|
+
s.test_files = [
|
67
|
+
"spec/linode/avail_spec.rb",
|
68
|
+
"spec/linode/domain/resource_spec.rb",
|
69
|
+
"spec/linode/domain_spec.rb",
|
70
|
+
"spec/linode/linode/config_spec.rb",
|
71
|
+
"spec/linode/linode/disk_spec.rb",
|
72
|
+
"spec/linode/linode/ip_spec.rb",
|
73
|
+
"spec/linode/linode/job_spec.rb",
|
74
|
+
"spec/linode/linode_spec.rb",
|
75
|
+
"spec/linode/nodebalancer/config_spec.rb",
|
76
|
+
"spec/linode/nodebalancer/node_spec.rb",
|
77
|
+
"spec/linode/nodebalancer_spec.rb",
|
78
|
+
"spec/linode/stackscript_spec.rb",
|
79
|
+
"spec/linode/test_spec.rb",
|
80
|
+
"spec/linode/user_spec.rb",
|
81
|
+
"spec/linode_spec.rb",
|
82
|
+
"spec/spec_helper.rb"
|
83
|
+
]
|
66
84
|
|
67
85
|
if s.respond_to? :specification_version then
|
68
86
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
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:
|
4
|
+
hash: 11
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 7
|
9
|
-
-
|
10
|
-
version: 0.7.
|
9
|
+
- 4
|
10
|
+
version: 0.7.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Rick Bradley
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-08-
|
18
|
+
date: 2011-08-23 00:00:00 -05:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -179,5 +179,20 @@ rubygems_version: 1.3.7
|
|
179
179
|
signing_key:
|
180
180
|
specification_version: 3
|
181
181
|
summary: a Ruby wrapper for the Linode API
|
182
|
-
test_files:
|
183
|
-
|
182
|
+
test_files:
|
183
|
+
- spec/linode/avail_spec.rb
|
184
|
+
- spec/linode/domain/resource_spec.rb
|
185
|
+
- spec/linode/domain_spec.rb
|
186
|
+
- spec/linode/linode/config_spec.rb
|
187
|
+
- spec/linode/linode/disk_spec.rb
|
188
|
+
- spec/linode/linode/ip_spec.rb
|
189
|
+
- spec/linode/linode/job_spec.rb
|
190
|
+
- spec/linode/linode_spec.rb
|
191
|
+
- spec/linode/nodebalancer/config_spec.rb
|
192
|
+
- spec/linode/nodebalancer/node_spec.rb
|
193
|
+
- spec/linode/nodebalancer_spec.rb
|
194
|
+
- spec/linode/stackscript_spec.rb
|
195
|
+
- spec/linode/test_spec.rb
|
196
|
+
- spec/linode/user_spec.rb
|
197
|
+
- spec/linode_spec.rb
|
198
|
+
- spec/spec_helper.rb
|