cloudster 2.6.0 → 2.6.1
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/Rakefile +5 -2
- data/VERSION +1 -1
- data/cloudster.gemspec +3 -3
- metadata +8 -4
data/Rakefile
CHANGED
|
@@ -17,8 +17,11 @@ Jeweler::Tasks.new do |gem|
|
|
|
17
17
|
gem.name = "cloudster"
|
|
18
18
|
gem.homepage = "http://github.com/emilsoman/cloudster"
|
|
19
19
|
gem.license = "MIT"
|
|
20
|
-
gem.summary = %Q{Cloudster
|
|
21
|
-
gem.description = %Q{Cloudster
|
|
20
|
+
gem.summary = %Q{Cloudster gem - a Ruby interface for provisioning your Amazon Cloud.}
|
|
21
|
+
gem.description = %Q{Cloudster is a Ruby gem that was born to cut the learning curve involved
|
|
22
|
+
in writing your own CloudFormation templates. If you don't know what a CloudFormation template is,
|
|
23
|
+
but know about the AWS Cloud offerings, you can still use cloudster to provision your stack.
|
|
24
|
+
Still in infancy , cloudster can create a very basic stack like a breeze. All kinds of contribution welcome !}
|
|
22
25
|
gem.email = "emil.soman@gmail.com"
|
|
23
26
|
gem.authors = ["Emil Soman"]
|
|
24
27
|
# dependencies defined in Gemfile
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.6.
|
|
1
|
+
2.6.1
|
data/cloudster.gemspec
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "cloudster"
|
|
8
|
-
s.version = "2.6.
|
|
8
|
+
s.version = "2.6.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Emil Soman"]
|
|
12
12
|
s.date = "2012-11-16"
|
|
13
|
-
s.description = "Cloudster
|
|
13
|
+
s.description = "Cloudster is a Ruby gem that was born to cut the learning curve involved \n in writing your own CloudFormation templates. If you don't know what a CloudFormation template is, \n but know about the AWS Cloud offerings, you can still use cloudster to provision your stack. \n Still in infancy , cloudster can create a very basic stack like a breeze. All kinds of contribution welcome !"
|
|
14
14
|
s.email = "emil.soman@gmail.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE.txt",
|
|
@@ -46,7 +46,7 @@ Gem::Specification.new do |s|
|
|
|
46
46
|
s.licenses = ["MIT"]
|
|
47
47
|
s.require_paths = ["lib"]
|
|
48
48
|
s.rubygems_version = "1.8.24"
|
|
49
|
-
s.summary = "Cloudster
|
|
49
|
+
s.summary = "Cloudster gem - a Ruby interface for provisioning your Amazon Cloud."
|
|
50
50
|
|
|
51
51
|
if s.respond_to? :specification_version then
|
|
52
52
|
s.specification_version = 3
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloudster
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -107,7 +107,11 @@ dependencies:
|
|
|
107
107
|
- - ~>
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
109
|
version: 1.8.4
|
|
110
|
-
description: Cloudster
|
|
110
|
+
description: ! "Cloudster is a Ruby gem that was born to cut the learning curve involved
|
|
111
|
+
\n in writing your own CloudFormation templates. If you don't know what a CloudFormation
|
|
112
|
+
template is, \n but know about the AWS Cloud offerings, you can still use cloudster
|
|
113
|
+
to provision your stack. \n Still in infancy , cloudster can create a very basic
|
|
114
|
+
stack like a breeze. All kinds of contribution welcome !"
|
|
111
115
|
email: emil.soman@gmail.com
|
|
112
116
|
executables: []
|
|
113
117
|
extensions: []
|
|
@@ -154,7 +158,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
154
158
|
version: '0'
|
|
155
159
|
segments:
|
|
156
160
|
- 0
|
|
157
|
-
hash:
|
|
161
|
+
hash: -610566703
|
|
158
162
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
163
|
none: false
|
|
160
164
|
requirements:
|
|
@@ -166,5 +170,5 @@ rubyforge_project:
|
|
|
166
170
|
rubygems_version: 1.8.24
|
|
167
171
|
signing_key:
|
|
168
172
|
specification_version: 3
|
|
169
|
-
summary: Cloudster
|
|
173
|
+
summary: Cloudster gem - a Ruby interface for provisioning your Amazon Cloud.
|
|
170
174
|
test_files: []
|