capistrano-chef 0.0.1 → 0.0.2
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/README.md +7 -1
- data/capistrano-chef.gemspec +3 -2
- data/lib/capistrano/chef/version.rb +2 -4
- metadata +45 -31
data/README.md
CHANGED
|
@@ -24,7 +24,13 @@ Using capistrano-chef, you can do this:
|
|
|
24
24
|
|
|
25
25
|
This defines the same roles using Chef's [search feature](http://wiki.opscode.com/display/chef/Search). Nodes are searched using the given query. The node's `ipaddress` attribute is used by default, but another (top-level) attribute can be specified in the options. The rest of the options are the same as those used by Capistrano.
|
|
26
26
|
|
|
27
|
-
Chef configuration options are loaded by [Knife](http://wiki.opscode.com/display/chef/Knifehttp://wiki.opscode.com/display/chef/Knife), looking for `.chef/knife.rb` in the current directory or one its parent directories.
|
|
27
|
+
Chef configuration options are loaded by [Knife](http://wiki.opscode.com/display/chef/Knifehttp://wiki.opscode.com/display/chef/Knife), looking for `.chef/knife.rb` in the current directory or one its parent directories.
|
|
28
|
+
|
|
29
|
+
To generate this file, run the following from the root of your project:
|
|
30
|
+
|
|
31
|
+
$ knife configure -i
|
|
32
|
+
|
|
33
|
+
|
|
28
34
|
|
|
29
35
|
License
|
|
30
36
|
-------
|
data/capistrano-chef.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ require "capistrano/chef/version"
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = "capistrano-chef"
|
|
7
|
-
s.version =
|
|
7
|
+
s.version = CapistranoChef::VERSION.dup
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.license = 'MIT'
|
|
10
10
|
s.authors = ['Nathan L Smith']
|
|
@@ -19,5 +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.
|
|
22
|
+
s.add_dependency 'capistrano', '~> 2.9.0'
|
|
23
|
+
s.add_dependency 'chef', '~> 0.10.8'
|
|
23
24
|
end
|
metadata
CHANGED
|
@@ -1,28 +1,45 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-chef
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.2
|
|
4
5
|
prerelease:
|
|
5
|
-
version: 0.0.1
|
|
6
6
|
platform: ruby
|
|
7
|
-
authors:
|
|
7
|
+
authors:
|
|
8
8
|
- Nathan L Smith
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
date: 2012-02-10 00:00:00.000000000Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
15
|
+
name: capistrano
|
|
16
|
+
requirement: &70339838004600 !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
18
|
+
requirements:
|
|
19
|
+
- - ~>
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 2.9.0
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: *70339838004600
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: chef
|
|
27
|
+
requirement: &70339838004040 !ruby/object:Gem::Requirement
|
|
28
|
+
none: false
|
|
29
|
+
requirements:
|
|
30
|
+
- - ~>
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 0.10.8
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: *70339838004040
|
|
16
36
|
description: Allows capistrano to use Chef data for deployment
|
|
17
|
-
email:
|
|
37
|
+
email:
|
|
18
38
|
- nlloyds@gmail.com
|
|
19
39
|
executables: []
|
|
20
|
-
|
|
21
40
|
extensions: []
|
|
22
|
-
|
|
23
41
|
extra_rdoc_files: []
|
|
24
|
-
|
|
25
|
-
files:
|
|
42
|
+
files:
|
|
26
43
|
- .gitignore
|
|
27
44
|
- Gemfile
|
|
28
45
|
- README.md
|
|
@@ -31,32 +48,29 @@ files:
|
|
|
31
48
|
- lib/capistrano/chef.rb
|
|
32
49
|
- lib/capistrano/chef/version.rb
|
|
33
50
|
homepage: https://github.com/cramerdev/capistrano-chef
|
|
34
|
-
licenses:
|
|
51
|
+
licenses:
|
|
35
52
|
- MIT
|
|
36
53
|
post_install_message:
|
|
37
54
|
rdoc_options: []
|
|
38
|
-
|
|
39
|
-
require_paths:
|
|
55
|
+
require_paths:
|
|
40
56
|
- lib
|
|
41
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
57
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
42
58
|
none: false
|
|
43
|
-
requirements:
|
|
44
|
-
- -
|
|
45
|
-
- !ruby/object:Gem::Version
|
|
46
|
-
version:
|
|
47
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - ! '>='
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '0'
|
|
63
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
48
64
|
none: false
|
|
49
|
-
requirements:
|
|
50
|
-
- -
|
|
51
|
-
- !ruby/object:Gem::Version
|
|
52
|
-
version:
|
|
53
|
-
requirements:
|
|
54
|
-
- capistrano ~> 2.8.0
|
|
55
|
-
- chef ~> 0.10.4
|
|
65
|
+
requirements:
|
|
66
|
+
- - ! '>='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
requirements: []
|
|
56
70
|
rubyforge_project: capistrano-chef
|
|
57
|
-
rubygems_version: 1.8.
|
|
71
|
+
rubygems_version: 1.8.15
|
|
58
72
|
signing_key:
|
|
59
73
|
specification_version: 3
|
|
60
74
|
summary: Capistrano extensions for Chef integration
|
|
61
75
|
test_files: []
|
|
62
|
-
|
|
76
|
+
has_rdoc:
|