microwave 0.1004.6 → 0.1006.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.rdoc"), "w") do |file|
136
+ open(File.join(dir, ENV["COOKBOOK"], "README.md"), "w") do |file|
137
137
  file.puts <<-EOH
138
- = DESCRIPTION:
138
+ Description
139
+ ===========
139
140
 
140
- = REQUIREMENTS:
141
+ Requirements
142
+ ============
141
143
 
142
- = ATTRIBUTES:
144
+ Attributes
145
+ ==========
143
146
 
144
- = USAGE:
147
+ Usage
148
+ =====
145
149
 
146
150
  EOH
147
151
  end
data/lib/chef/version.rb CHANGED
@@ -17,7 +17,7 @@
17
17
 
18
18
  class Chef
19
19
  CHEF_ROOT = File.dirname(File.expand_path(File.dirname(__FILE__)))
20
- VERSION = '0.1004.6'
20
+ VERSION = '0.1006.1'
21
21
  end
22
22
 
23
23
  # NOTE: the Chef::Version class is defined in version_class.rb
@@ -21,7 +21,7 @@ class Chef
21
21
  attr_reader :major, :minor, :patch
22
22
 
23
23
  def initialize(str="")
24
- @major, @minor, @patch = parse(str)
24
+ parse(str)
25
25
  end
26
26
 
27
27
  def inspect
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: 4003
4
+ hash: 4005
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 1004
9
- - 6
10
- version: 0.1004.6
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-11-30 00:00:00 Z
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.11
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