capify-ec2 1.5.0.pre → 1.5.0.pre2

Sign up to get free protection for your applications and to get access to all the features.
data/Changelog.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 1.5.0.pre2 (Jul 23, 2013)
2
+
3
+ Bugfixes:
4
+
5
+ - Fixed a regression where Capify-EC2 wasn't pulling in configuration from anything except for 'ec2.yml'.
6
+
1
7
  ## 1.5.0.pre (Jul 19, 2013)
2
8
 
3
9
  Features:
data/LICENSE CHANGED
@@ -1,3 +1,5 @@
1
+ The MIT License (MIT)
2
+
1
3
  Copyright (c) 2011, 2012, 2013 Forward
2
4
 
3
5
  Permission is hereby granted, free of charge, to any person obtaining
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 => @ec2_config[:aws_access_key_id],
63
- :aws_secret_access_key => @ec2_config[: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
 
@@ -1,6 +1,6 @@
1
1
  module Capify
2
2
  module Ec2
3
- VERSION = "1.5.0.pre"
3
+ VERSION = "1.5.0.pre2"
4
4
  end
5
5
  end
6
6
 
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: -2020557639
4
+ hash: -151014382
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
9
  - 0
10
10
  - pre
11
- version: 1.5.0.pre
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-19 00:00:00 Z
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