capistrano-chef 0.0.8 → 0.1.0
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.
- checksums.yaml +4 -4
- data/README.md +5 -1
- data/capistrano-chef.gemspec +1 -1
- data/lib/capistrano/chef/version.rb +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57a52005f690eda3d555057201e0c5cd3def02f3
|
|
4
|
+
data.tar.gz: 4f65681040d5d9f1ed2b0b263a85f67745ff93ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29c2c573ec777ad496e4085a3d2768ddff257f94df0cab462ec9b75933a4f7280c363fd7c5e384d1d0d839de416af80c9d15ce4cd49a519cf98af905f47e7864
|
|
7
|
+
data.tar.gz: 40680056c8c6288e678f4a9bee248027fdc0e1795b8c44e1d1313ed71ad053cc94fba2ade2dedb6f988b5f40d1e31200b313b5c174ec6d8e357c3abb48272afc
|
data/README.md
CHANGED
|
@@ -91,7 +91,11 @@ If you're using [Opscode Hosted Chef](http://www.opscode.com/hosted-chef/) these
|
|
|
91
91
|
|
|
92
92
|
## Requirements
|
|
93
93
|
|
|
94
|
-
Tested with Ruby Enterprise Edition 1.8.7, Ruby 1.9.2 and 1.9.3. Should work with Capistrano 2
|
|
94
|
+
Tested with Ruby Enterprise Edition 1.8.7, Ruby 1.9.2 and 1.9.3. Should work with Capistrano 2.
|
|
95
|
+
|
|
96
|
+
### Capistrano 3 Support
|
|
97
|
+
|
|
98
|
+
Capistrano 3 is not supported at this time. Pull requests that add this support are welcome. Issues related to Capistrano 3 have a "Capistrano 3" label in the issues section on GitHub.
|
|
95
99
|
|
|
96
100
|
## License
|
|
97
101
|
|
data/capistrano-chef.gemspec
CHANGED
|
@@ -19,6 +19,6 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
20
20
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
21
21
|
s.require_paths = ["lib"]
|
|
22
|
-
s.add_dependency 'capistrano', '
|
|
22
|
+
s.add_dependency 'capistrano', '< 3'
|
|
23
23
|
s.add_dependency 'chef', '>= 0.10.10'
|
|
24
24
|
end
|
metadata
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-chef
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan L Smith
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-01-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - <
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '3'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - <
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '3'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: chef
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -77,10 +77,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
77
77
|
version: '0'
|
|
78
78
|
requirements: []
|
|
79
79
|
rubyforge_project: capistrano-chef
|
|
80
|
-
rubygems_version: 2.0.
|
|
80
|
+
rubygems_version: 2.0.14
|
|
81
81
|
signing_key:
|
|
82
82
|
specification_version: 4
|
|
83
83
|
summary: Capistrano extensions for Chef integration
|
|
84
84
|
test_files:
|
|
85
85
|
- spec/capistrano/chef_spec.rb
|
|
86
86
|
- spec/spec_helper.rb
|
|
87
|
+
has_rdoc:
|