knife-github-cookbooks 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
data/README.md
CHANGED
@@ -124,6 +124,11 @@ This plugin does not support automatically fetching cookbook dependencies,
|
|
124
124
|
since version constraints are numeric and cookbook names can't specify the
|
125
125
|
Github user. If you have an clever ideas for how this should work, hit me up.
|
126
126
|
|
127
|
+
Bundler has been tried (see Bundler's pull request history), but is a no-go
|
128
|
+
until it fixes its Git repo support. Git repo support was not a priority for
|
129
|
+
Bundler core devs, so anyone should be aware if they do try to revisit this.
|
130
|
+
|
131
|
+
|
127
132
|
Requirements
|
128
133
|
------------
|
129
134
|
|
@@ -102,7 +102,8 @@ class Chef
|
|
102
102
|
ui.error("Expected a github user and a repo to download from: jnewland/chef_ipmi")
|
103
103
|
exit 1
|
104
104
|
end
|
105
|
-
@cookbook_name = @github_repo.gsub(/[_-]?chef[-_]?/, '').
|
105
|
+
@cookbook_name = @github_repo.gsub(/[_-]?chef(?!-client|-server|_handler)[-_]?/, '').
|
106
|
+
gsub(/[_-]?cookbook[-_]?/, '')
|
106
107
|
end
|
107
108
|
end
|
108
109
|
|
@@ -148,4 +149,5 @@ class Chef
|
|
148
149
|
|
149
150
|
end
|
150
151
|
end
|
151
|
-
end
|
152
|
+
end
|
153
|
+
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-github-cookbooks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 4
|
10
|
+
version: 0.1.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jesse Newland
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-06-01 00:00:00 -04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|