capify-ec2 1.4.0.pre1 → 1.4.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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## 1.4.0.pre2 (Feb 15, 2013)
2
+
3
+ Features:
4
+
5
+ - Minimum Capistrano version required set to v2.14 or greater. This fixes several issues, including an exception being thrown when a task was limited to certain roles, which weren't specified during deployment. For example, a task limited to ':roles => [:web]' would raise an exception if you tried to run 'cap db deploy', as no roles would match.
6
+
1
7
  ## 1.4.0.pre1 (Feb 15, 2013)
2
8
 
3
9
  Features:
data/capify-ec2.gemspec CHANGED
@@ -20,5 +20,5 @@ Gem::Specification.new do |s|
20
20
  s.require_paths = ["lib"]
21
21
  s.add_dependency('fog', '=1.3.1')
22
22
  s.add_dependency('colored', '=1.2')
23
- s.add_dependency('capistrano')
23
+ s.add_dependency('capistrano', '~> 2.14')
24
24
  end
@@ -1,6 +1,6 @@
1
1
  module Capify
2
2
  module Ec2
3
- VERSION = "1.4.0.pre1"
3
+ VERSION = "1.4.0.pre2"
4
4
  end
5
5
  end
6
6
 
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capify-ec2
3
3
  version: !ruby/object:Gem::Version
4
- hash: -2106362774
4
+ hash: -1103184854
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 1
8
8
  - 4
9
9
  - 0
10
10
  - pre
11
- - 1
12
- version: 1.4.0.pre1
11
+ - 2
12
+ version: 1.4.0.pre2
13
13
  platform: ruby
14
14
  authors:
15
15
  - Noah Cantor
@@ -57,12 +57,13 @@ dependencies:
57
57
  requirement: &id003 !ruby/object:Gem::Requirement
58
58
  none: false
59
59
  requirements:
60
- - - ">="
60
+ - - ~>
61
61
  - !ruby/object:Gem::Version
62
- hash: 3
62
+ hash: 31
63
63
  segments:
64
- - 0
65
- version: "0"
64
+ - 2
65
+ - 14
66
+ version: "2.14"
66
67
  type: :runtime
67
68
  version_requirements: *id003
68
69
  description: 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.