rightscaler 0.0.3 → 0.1.2
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/VERSION.yml +2 -2
- data/rightscaler.gemspec +32 -34
- metadata +19 -10
data/VERSION.yml
CHANGED
data/rightscaler.gemspec
CHANGED
|
@@ -1,66 +1,64 @@
|
|
|
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{rightscaler}
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.1.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Joshua Bates"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2011-04-14}
|
|
13
13
|
s.email = %q{joshuabates@gmail.com}
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"LICENSE",
|
|
16
|
-
|
|
16
|
+
"README.markdown"
|
|
17
17
|
]
|
|
18
18
|
s.files = [
|
|
19
19
|
"LICENSE",
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
20
|
+
"README.markdown",
|
|
21
|
+
"Rakefile",
|
|
22
|
+
"VERSION.yml",
|
|
23
|
+
"lib/rightscaler.rb",
|
|
24
|
+
"lib/rightscaler/account.rb",
|
|
25
|
+
"lib/rightscaler/design.rb",
|
|
26
|
+
"lib/rightscaler/design/credential.rb",
|
|
27
|
+
"lib/rightscaler/design/macro.rb",
|
|
28
|
+
"lib/rightscaler/design/right_script.rb",
|
|
29
|
+
"lib/rightscaler/design/server_template.rb",
|
|
30
|
+
"lib/rightscaler/manage.rb",
|
|
31
|
+
"lib/rightscaler/manage/alert_specification.rb",
|
|
32
|
+
"lib/rightscaler/manage/deployment.rb",
|
|
33
|
+
"lib/rightscaler/manage/ec2_ebs_snapshot.rb",
|
|
34
|
+
"lib/rightscaler/manage/ec2_ebs_volume.rb",
|
|
35
|
+
"lib/rightscaler/manage/ec2_elastic_ip.rb",
|
|
36
|
+
"lib/rightscaler/manage/ec2_security_group.rb",
|
|
37
|
+
"lib/rightscaler/manage/ec2_ssh_key.rb",
|
|
38
|
+
"lib/rightscaler/manage/server.rb",
|
|
39
|
+
"lib/rightscaler/manage/status.rb",
|
|
40
|
+
"lib/rightscaler/resource.rb",
|
|
41
|
+
"rightscaler.gemspec",
|
|
42
|
+
"test/test_helper.rb"
|
|
43
43
|
]
|
|
44
44
|
s.homepage = %q{http://github.com/joshuabates/rightscaler}
|
|
45
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
46
45
|
s.require_paths = ["lib"]
|
|
47
|
-
s.rubygems_version = %q{1.
|
|
46
|
+
s.rubygems_version = %q{1.6.1}
|
|
48
47
|
s.summary = %q{An ActiveResource interface to the Rightscale API}
|
|
49
48
|
s.test_files = [
|
|
50
49
|
"test/test_helper.rb"
|
|
51
50
|
]
|
|
52
51
|
|
|
53
52
|
if s.respond_to? :specification_version then
|
|
54
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
55
53
|
s.specification_version = 3
|
|
56
54
|
|
|
57
|
-
if Gem::Version.new(Gem::
|
|
58
|
-
s.add_runtime_dependency(%q<activeresource>, ["
|
|
55
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
56
|
+
s.add_runtime_dependency(%q<activeresource>, ["~> 2.3.0"])
|
|
59
57
|
else
|
|
60
|
-
s.add_dependency(%q<activeresource>, ["
|
|
58
|
+
s.add_dependency(%q<activeresource>, ["~> 2.3.0"])
|
|
61
59
|
end
|
|
62
60
|
else
|
|
63
|
-
s.add_dependency(%q<activeresource>, ["
|
|
61
|
+
s.add_dependency(%q<activeresource>, ["~> 2.3.0"])
|
|
64
62
|
end
|
|
65
63
|
end
|
|
66
64
|
|
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rightscaler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 31
|
|
5
|
+
prerelease:
|
|
5
6
|
segments:
|
|
6
7
|
- 0
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
version: 0.
|
|
8
|
+
- 1
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.1.2
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- Joshua Bates
|
|
@@ -14,19 +15,23 @@ autorequire:
|
|
|
14
15
|
bindir: bin
|
|
15
16
|
cert_chain: []
|
|
16
17
|
|
|
17
|
-
date:
|
|
18
|
+
date: 2011-04-14 00:00:00 -07:00
|
|
18
19
|
default_executable:
|
|
19
20
|
dependencies:
|
|
20
21
|
- !ruby/object:Gem::Dependency
|
|
21
22
|
name: activeresource
|
|
22
23
|
prerelease: false
|
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
24
26
|
requirements:
|
|
25
|
-
- -
|
|
27
|
+
- - ~>
|
|
26
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
27
30
|
segments:
|
|
31
|
+
- 2
|
|
32
|
+
- 3
|
|
28
33
|
- 0
|
|
29
|
-
version:
|
|
34
|
+
version: 2.3.0
|
|
30
35
|
type: :runtime
|
|
31
36
|
version_requirements: *id001
|
|
32
37
|
description:
|
|
@@ -68,28 +73,32 @@ homepage: http://github.com/joshuabates/rightscaler
|
|
|
68
73
|
licenses: []
|
|
69
74
|
|
|
70
75
|
post_install_message:
|
|
71
|
-
rdoc_options:
|
|
72
|
-
|
|
76
|
+
rdoc_options: []
|
|
77
|
+
|
|
73
78
|
require_paths:
|
|
74
79
|
- lib
|
|
75
80
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
81
|
+
none: false
|
|
76
82
|
requirements:
|
|
77
83
|
- - ">="
|
|
78
84
|
- !ruby/object:Gem::Version
|
|
85
|
+
hash: 3
|
|
79
86
|
segments:
|
|
80
87
|
- 0
|
|
81
88
|
version: "0"
|
|
82
89
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
|
+
none: false
|
|
83
91
|
requirements:
|
|
84
92
|
- - ">="
|
|
85
93
|
- !ruby/object:Gem::Version
|
|
94
|
+
hash: 3
|
|
86
95
|
segments:
|
|
87
96
|
- 0
|
|
88
97
|
version: "0"
|
|
89
98
|
requirements: []
|
|
90
99
|
|
|
91
100
|
rubyforge_project:
|
|
92
|
-
rubygems_version: 1.
|
|
101
|
+
rubygems_version: 1.6.1
|
|
93
102
|
signing_key:
|
|
94
103
|
specification_version: 3
|
|
95
104
|
summary: An ActiveResource interface to the Rightscale API
|