rest_connection 0.0.15 → 0.0.16
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/rest_connection/rightscale/ec2_elastic_ip.rb +20 -0
- data/lib/rest_connection/rightscale/rightscale_api_resources.rb +1 -0
- data/rest_connection.gemspec +76 -77
- metadata +21 -21
- data/.gitignore +0 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.16
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# This file is part of RestConnection
|
2
|
+
#
|
3
|
+
# RestConnection is free software: you can redistribute it and/or modify
|
4
|
+
# it under the terms of the GNU General Public License as published by
|
5
|
+
# the Free Software Foundation, either version 3 of the License, or
|
6
|
+
# (at your option) any later version.
|
7
|
+
#
|
8
|
+
# RestConnection is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with RestConnection. If not, see <http://www.gnu.org/licenses/>.
|
15
|
+
#
|
16
|
+
|
17
|
+
class Ec2ElasticIp
|
18
|
+
include RightScale::Api::Base
|
19
|
+
extend RightScale::Api::BaseExtend
|
20
|
+
end
|
@@ -41,3 +41,4 @@ require 'rest_connection/rightscale/right_script_internal'
|
|
41
41
|
require 'rest_connection/rightscale/multi_cloud_image_internal'
|
42
42
|
require 'rest_connection/rightscale/multi_cloud_image_cloud_setting_internal'
|
43
43
|
require 'rest_connection/rightscale/ec2_server_array'
|
44
|
+
require 'rest_connection/rightscale/ec2_elastic_ip'
|
data/rest_connection.gemspec
CHANGED
@@ -1,102 +1,101 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{rest_connection}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.16"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Jeremy Deininger"]
|
12
|
-
s.date = %q{
|
12
|
+
s.date = %q{2011-02-08}
|
13
13
|
s.description = %q{provides rest_connection}
|
14
14
|
s.email = %q{jeremy@rubyonlinux.org}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"README.rdoc"
|
17
17
|
]
|
18
18
|
s.files = [
|
19
|
-
".
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
19
|
+
"README.rdoc",
|
20
|
+
"Rakefile",
|
21
|
+
"VERSION",
|
22
|
+
"config/rest_api_config.yaml.sample",
|
23
|
+
"examples/README.txt",
|
24
|
+
"examples/console.rb",
|
25
|
+
"examples/cucumber/2mysql_5.x_v2_beta_from_scratch.feature",
|
26
|
+
"examples/cucumber/step_definitions/deployment_steps.rb",
|
27
|
+
"examples/cucumber/step_definitions/mysql_steps.rb",
|
28
|
+
"examples/cucumber/step_definitions/recipe_steps.rb",
|
29
|
+
"examples/cucumber/step_definitions/spot_check_steps.rb",
|
30
|
+
"examples/relaunch_deployment.rb",
|
31
|
+
"examples/right_scale_ec2_instances_api_test.rb",
|
32
|
+
"lib/rest_connection.rb",
|
33
|
+
"lib/rest_connection/rightscale/alert_spec.rb",
|
34
|
+
"lib/rest_connection/rightscale/audit_entry.rb",
|
35
|
+
"lib/rest_connection/rightscale/deployment.rb",
|
36
|
+
"lib/rest_connection/rightscale/ec2_ebs_snapshot.rb",
|
37
|
+
"lib/rest_connection/rightscale/ec2_ebs_volume.rb",
|
38
|
+
"lib/rest_connection/rightscale/ec2_elastic_ip.rb",
|
39
|
+
"lib/rest_connection/rightscale/ec2_security_group.rb",
|
40
|
+
"lib/rest_connection/rightscale/ec2_server_array.rb",
|
41
|
+
"lib/rest_connection/rightscale/ec2_ssh_key.rb",
|
42
|
+
"lib/rest_connection/rightscale/ec2_ssh_key_internal.rb",
|
43
|
+
"lib/rest_connection/rightscale/executable.rb",
|
44
|
+
"lib/rest_connection/rightscale/instance.rb",
|
45
|
+
"lib/rest_connection/rightscale/mc_server.rb",
|
46
|
+
"lib/rest_connection/rightscale/multi_cloud_image.rb",
|
47
|
+
"lib/rest_connection/rightscale/multi_cloud_image_cloud_setting_internal.rb",
|
48
|
+
"lib/rest_connection/rightscale/multi_cloud_image_internal.rb",
|
49
|
+
"lib/rest_connection/rightscale/right_script.rb",
|
50
|
+
"lib/rest_connection/rightscale/right_script_internal.rb",
|
51
|
+
"lib/rest_connection/rightscale/rightscale_api_base.rb",
|
52
|
+
"lib/rest_connection/rightscale/rightscale_api_gateway.rb",
|
53
|
+
"lib/rest_connection/rightscale/rightscale_api_internal.rb",
|
54
|
+
"lib/rest_connection/rightscale/rightscale_api_resources.rb",
|
55
|
+
"lib/rest_connection/rightscale/rs_internal.rb",
|
56
|
+
"lib/rest_connection/rightscale/server.rb",
|
57
|
+
"lib/rest_connection/rightscale/server_internal.rb",
|
58
|
+
"lib/rest_connection/rightscale/server_template.rb",
|
59
|
+
"lib/rest_connection/rightscale/server_template_internal.rb",
|
60
|
+
"lib/rest_connection/rightscale/status.rb",
|
61
|
+
"lib/rest_connection/rightscale/tag.rb",
|
62
|
+
"lib/rest_connection/ssh_hax.rb",
|
63
|
+
"rest_connection.gemspec",
|
64
|
+
"spec/ec2_server_array_spec.rb",
|
65
|
+
"spec/ec2_ssh_key_internal_spec.rb",
|
66
|
+
"spec/image_jockey.rb",
|
67
|
+
"spec/method_missing_spec.rb",
|
68
|
+
"spec/right_script_internal.rb",
|
69
|
+
"spec/rs_internal_spec.rb",
|
70
|
+
"spec/server_internal_spec.rb",
|
71
|
+
"spec/server_spec.rb",
|
72
|
+
"spec/server_template_internal.rb",
|
73
|
+
"spec/spec_helper.rb",
|
74
|
+
"spec/tag_spec.rb"
|
75
75
|
]
|
76
76
|
s.homepage = %q{http://github.com/jeremyd/rest_connection}
|
77
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
78
77
|
s.require_paths = ["lib"]
|
79
78
|
s.rubygems_version = %q{1.3.7}
|
80
79
|
s.summary = %q{lib for restful connections to the rightscale api}
|
81
80
|
s.test_files = [
|
81
|
+
"examples/console.rb",
|
82
|
+
"examples/cucumber/step_definitions/deployment_steps.rb",
|
83
|
+
"examples/cucumber/step_definitions/mysql_steps.rb",
|
84
|
+
"examples/cucumber/step_definitions/recipe_steps.rb",
|
85
|
+
"examples/cucumber/step_definitions/spot_check_steps.rb",
|
86
|
+
"examples/relaunch_deployment.rb",
|
87
|
+
"examples/right_scale_ec2_instances_api_test.rb",
|
88
|
+
"spec/ec2_server_array_spec.rb",
|
89
|
+
"spec/ec2_ssh_key_internal_spec.rb",
|
90
|
+
"spec/image_jockey.rb",
|
91
|
+
"spec/method_missing_spec.rb",
|
92
|
+
"spec/right_script_internal.rb",
|
93
|
+
"spec/rs_internal_spec.rb",
|
82
94
|
"spec/server_internal_spec.rb",
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
"spec/right_script_internal.rb",
|
88
|
-
"spec/ec2_ssh_key_internal_spec.rb",
|
89
|
-
"spec/rs_internal_spec.rb",
|
90
|
-
"spec/tag_spec.rb",
|
91
|
-
"spec/ec2_server_array_spec.rb",
|
92
|
-
"spec/image_jockey.rb",
|
93
|
-
"examples/relaunch_deployment.rb",
|
94
|
-
"examples/cucumber/step_definitions/spot_check_steps.rb",
|
95
|
-
"examples/cucumber/step_definitions/deployment_steps.rb",
|
96
|
-
"examples/cucumber/step_definitions/mysql_steps.rb",
|
97
|
-
"examples/cucumber/step_definitions/recipe_steps.rb",
|
98
|
-
"examples/right_scale_ec2_instances_api_test.rb",
|
99
|
-
"examples/console.rb"
|
95
|
+
"spec/server_spec.rb",
|
96
|
+
"spec/server_template_internal.rb",
|
97
|
+
"spec/spec_helper.rb",
|
98
|
+
"spec/tag_spec.rb"
|
100
99
|
]
|
101
100
|
|
102
101
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rest_connection
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 63
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 16
|
10
|
+
version: 0.0.16
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jeremy Deininger
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2011-02-08 00:00:00 -08:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -69,7 +69,6 @@ extensions: []
|
|
69
69
|
extra_rdoc_files:
|
70
70
|
- README.rdoc
|
71
71
|
files:
|
72
|
-
- .gitignore
|
73
72
|
- README.rdoc
|
74
73
|
- Rakefile
|
75
74
|
- VERSION
|
@@ -89,6 +88,7 @@ files:
|
|
89
88
|
- lib/rest_connection/rightscale/deployment.rb
|
90
89
|
- lib/rest_connection/rightscale/ec2_ebs_snapshot.rb
|
91
90
|
- lib/rest_connection/rightscale/ec2_ebs_volume.rb
|
91
|
+
- lib/rest_connection/rightscale/ec2_elastic_ip.rb
|
92
92
|
- lib/rest_connection/rightscale/ec2_security_group.rb
|
93
93
|
- lib/rest_connection/rightscale/ec2_server_array.rb
|
94
94
|
- lib/rest_connection/rightscale/ec2_ssh_key.rb
|
@@ -130,8 +130,8 @@ homepage: http://github.com/jeremyd/rest_connection
|
|
130
130
|
licenses: []
|
131
131
|
|
132
132
|
post_install_message:
|
133
|
-
rdoc_options:
|
134
|
-
|
133
|
+
rdoc_options: []
|
134
|
+
|
135
135
|
require_paths:
|
136
136
|
- lib
|
137
137
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -160,21 +160,21 @@ signing_key:
|
|
160
160
|
specification_version: 3
|
161
161
|
summary: lib for restful connections to the rightscale api
|
162
162
|
test_files:
|
163
|
-
-
|
164
|
-
- spec/spec_helper.rb
|
165
|
-
- spec/method_missing_spec.rb
|
166
|
-
- spec/server_template_internal.rb
|
167
|
-
- spec/server_spec.rb
|
168
|
-
- spec/right_script_internal.rb
|
169
|
-
- spec/ec2_ssh_key_internal_spec.rb
|
170
|
-
- spec/rs_internal_spec.rb
|
171
|
-
- spec/tag_spec.rb
|
172
|
-
- spec/ec2_server_array_spec.rb
|
173
|
-
- spec/image_jockey.rb
|
174
|
-
- examples/relaunch_deployment.rb
|
175
|
-
- examples/cucumber/step_definitions/spot_check_steps.rb
|
163
|
+
- examples/console.rb
|
176
164
|
- examples/cucumber/step_definitions/deployment_steps.rb
|
177
165
|
- examples/cucumber/step_definitions/mysql_steps.rb
|
178
166
|
- examples/cucumber/step_definitions/recipe_steps.rb
|
167
|
+
- examples/cucumber/step_definitions/spot_check_steps.rb
|
168
|
+
- examples/relaunch_deployment.rb
|
179
169
|
- examples/right_scale_ec2_instances_api_test.rb
|
180
|
-
-
|
170
|
+
- spec/ec2_server_array_spec.rb
|
171
|
+
- spec/ec2_ssh_key_internal_spec.rb
|
172
|
+
- spec/image_jockey.rb
|
173
|
+
- spec/method_missing_spec.rb
|
174
|
+
- spec/right_script_internal.rb
|
175
|
+
- spec/rs_internal_spec.rb
|
176
|
+
- spec/server_internal_spec.rb
|
177
|
+
- spec/server_spec.rb
|
178
|
+
- spec/server_template_internal.rb
|
179
|
+
- spec/spec_helper.rb
|
180
|
+
- spec/tag_spec.rb
|
data/.gitignore
DELETED