capify-ec2 1.5.0.pre → 1.5.0.pre2
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/Changelog.md +6 -0
- data/LICENSE +2 -0
- data/capify-ec2.gemspec +1 -0
- data/lib/capify-ec2.rb +2 -2
- data/lib/capify-ec2/version.rb +1 -1
- metadata +6 -5
data/Changelog.md
CHANGED
data/LICENSE
CHANGED
data/capify-ec2.gemspec
CHANGED
|
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
s.homepage = "http://github.com/forward/capify-ec2"
|
|
12
12
|
s.summary = %q{Capify-EC2 is used to generate Capistrano namespaces and tasks from Amazon EC2 instance tags, dynamically building the list of servers to be deployed to.}
|
|
13
13
|
s.description = %q{Capify-EC2 is used to generate Capistrano namespaces and tasks from Amazon EC2 instance tags, dynamically building the list of servers to be deployed to.}
|
|
14
|
+
s.license = 'MIT'
|
|
14
15
|
|
|
15
16
|
s.rubyforge_project = "capify-ec2"
|
|
16
17
|
|
data/lib/capify-ec2.rb
CHANGED
|
@@ -59,8 +59,8 @@ class CapifyEc2
|
|
|
59
59
|
if @ec2_config[:use_iam_profile]
|
|
60
60
|
{ :use_iam_profile => true }
|
|
61
61
|
else
|
|
62
|
-
{ :aws_access_key_id =>
|
|
63
|
-
:aws_secret_access_key =>
|
|
62
|
+
{ :aws_access_key_id => aws_access_key_id,
|
|
63
|
+
:aws_secret_access_key => aws_secret_access_key }
|
|
64
64
|
end
|
|
65
65
|
end
|
|
66
66
|
|
data/lib/capify-ec2/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capify-ec2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash: -
|
|
4
|
+
hash: -151014382
|
|
5
5
|
prerelease: 6
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 5
|
|
9
9
|
- 0
|
|
10
10
|
- pre
|
|
11
|
-
|
|
11
|
+
- 2
|
|
12
|
+
version: 1.5.0.pre2
|
|
12
13
|
platform: ruby
|
|
13
14
|
authors:
|
|
14
15
|
- Noah Cantor
|
|
@@ -19,7 +20,7 @@ autorequire:
|
|
|
19
20
|
bindir: bin
|
|
20
21
|
cert_chain: []
|
|
21
22
|
|
|
22
|
-
date: 2013-07-
|
|
23
|
+
date: 2013-07-23 00:00:00 Z
|
|
23
24
|
dependencies:
|
|
24
25
|
- !ruby/object:Gem::Dependency
|
|
25
26
|
name: fog
|
|
@@ -89,8 +90,8 @@ files:
|
|
|
89
90
|
- lib/capify-ec2/version.rb
|
|
90
91
|
- readme.md
|
|
91
92
|
homepage: http://github.com/forward/capify-ec2
|
|
92
|
-
licenses:
|
|
93
|
-
|
|
93
|
+
licenses:
|
|
94
|
+
- MIT
|
|
94
95
|
post_install_message:
|
|
95
96
|
rdoc_options: []
|
|
96
97
|
|