microwave 0.1004.6 → 0.1006.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/chef/checksum.rb +33 -13
- data/lib/chef/checksum/storage.rb +18 -0
- data/lib/chef/checksum/storage/filesystem.rb +56 -0
- data/lib/chef/config.rb +5 -1
- data/lib/chef/cookbook/syntax_check.rb +1 -1
- data/lib/chef/cookbook_version.rb +37 -9
- data/lib/chef/file_access_control.rb +1 -1
- data/lib/chef/handler.rb +21 -0
- data/lib/chef/mixin/command.rb +0 -58
- data/lib/chef/mixin/command/windows.rb +1 -1
- data/lib/chef/provider/file.rb +5 -1
- data/lib/chef/provider/remote_directory.rb +0 -1
- data/lib/chef/resource.rb +66 -41
- data/lib/chef/resource/conditional.rb +90 -0
- data/lib/chef/shell_out.rb +0 -1
- data/lib/chef/shell_out/windows.rb +511 -52
- data/lib/chef/tasks/chef_repo.rake +9 -5
- data/lib/chef/version.rb +1 -1
- data/lib/chef/version_class.rb +1 -1
- metadata +9 -6
@@ -133,15 +133,19 @@ def create_readme(dir)
|
|
133
133
|
raise "Must provide a COOKBOOK=" unless ENV["COOKBOOK"]
|
134
134
|
puts "** Creating README for cookbook: #{ENV["COOKBOOK"]}"
|
135
135
|
unless File.exists?(File.join(dir, ENV["COOKBOOK"], "README.rdoc"))
|
136
|
-
open(File.join(dir, ENV["COOKBOOK"], "README.
|
136
|
+
open(File.join(dir, ENV["COOKBOOK"], "README.md"), "w") do |file|
|
137
137
|
file.puts <<-EOH
|
138
|
-
|
138
|
+
Description
|
139
|
+
===========
|
139
140
|
|
140
|
-
|
141
|
+
Requirements
|
142
|
+
============
|
141
143
|
|
142
|
-
|
144
|
+
Attributes
|
145
|
+
==========
|
143
146
|
|
144
|
-
|
147
|
+
Usage
|
148
|
+
=====
|
145
149
|
|
146
150
|
EOH
|
147
151
|
end
|
data/lib/chef/version.rb
CHANGED
data/lib/chef/version_class.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: microwave
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 4005
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 1006
|
9
|
+
- 1
|
10
|
+
version: 0.1006.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Tom Bombadil
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-12-14 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: mixlib-config
|
@@ -202,6 +202,8 @@ files:
|
|
202
202
|
- lib/chef/application/solo.rb
|
203
203
|
- lib/chef/application.rb
|
204
204
|
- lib/chef/applications.rb
|
205
|
+
- lib/chef/checksum/storage/filesystem.rb
|
206
|
+
- lib/chef/checksum/storage.rb
|
205
207
|
- lib/chef/checksum.rb
|
206
208
|
- lib/chef/checksum_cache.rb
|
207
209
|
- lib/chef/client.rb
|
@@ -266,6 +268,7 @@ files:
|
|
266
268
|
- lib/chef/provider.rb
|
267
269
|
- lib/chef/providers.rb
|
268
270
|
- lib/chef/recipe.rb
|
271
|
+
- lib/chef/resource/conditional.rb
|
269
272
|
- lib/chef/resource/cookbook_file.rb
|
270
273
|
- lib/chef/resource/directory.rb
|
271
274
|
- lib/chef/resource/env.rb
|
@@ -326,7 +329,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
326
329
|
requirements: []
|
327
330
|
|
328
331
|
rubyforge_project:
|
329
|
-
rubygems_version: 1.8.
|
332
|
+
rubygems_version: 1.8.10
|
330
333
|
signing_key:
|
331
334
|
specification_version: 3
|
332
335
|
summary: A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure, forked from Opscode Chef
|