gusteau 0.4.6 → 0.4.7

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 CHANGED
@@ -56,7 +56,7 @@ Gusteau only needs a node definition to run, but you'll need a few cookbooks to
56
56
  The following command generates an example configuration to get you started:
57
57
 
58
58
  ```
59
- gusteau generate project-name
59
+ gusteau init project-name
60
60
  ```
61
61
 
62
62
  Next, `cd project-name` and see `nodes/example.yml`.
@@ -34,7 +34,7 @@ class Gusteau::CLI < Optitron::CLI
34
34
  end
35
35
 
36
36
  desc 'Generate an example project (a bureau)'
37
- def generate(bureau_name)
37
+ def init(bureau_name)
38
38
  Gusteau::Bureau.new(bureau_name)
39
39
  end
40
40
 
@@ -41,7 +41,7 @@ module Gusteau
41
41
  system 'bundle'
42
42
 
43
43
  puts 'Installing cookbooks'
44
- system 'librarian-chef install'
44
+ system 'bundle exec berks install --path ./cookbooks'
45
45
  end
46
46
  end
47
47
  end
@@ -1,3 +1,3 @@
1
1
  module Gusteau
2
- VERSION = "0.4.6"
2
+ VERSION = "0.4.7"
3
3
  end
@@ -0,0 +1,7 @@
1
+ # vi:ft=ruby:
2
+
3
+ site :opscode
4
+
5
+ cookbook 'apt'
6
+ cookbook 'build-essential'
7
+ cookbook 'user'
@@ -2,6 +2,5 @@
2
2
 
3
3
  source 'http://rubygems.org'
4
4
 
5
- gem 'librarian'
5
+ gem 'berkshelf'
6
6
  gem 'gusteau'
7
- gem 'vagrant', '~> 1.0.5'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gusteau
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.6
4
+ version: 0.4.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -171,7 +171,7 @@ files:
171
171
  - spec/nodes/staging.yml
172
172
  - spec/spec_helper.rb
173
173
  - template/.gitignore
174
- - template/Cheffile
174
+ - template/Berksfile
175
175
  - template/Gemfile
176
176
  - template/Vagrantfile
177
177
  - template/data_bags/users/user.json.erb
@@ -1,8 +0,0 @@
1
- # vi:ft=ruby:
2
-
3
- site 'http://community.opscode.com/api/v1'
4
-
5
- cookbook 'apt'
6
- cookbook 'build-essential'
7
-
8
- cookbook 'user', :github => 'fnichol/chef-user'