Skip to content

Commit

Permalink
direct conversion from jamie to test kitchen 1.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
mdxp committed Mar 19, 2013
1 parent 996455a commit b3c2d8e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .gitignore
@@ -1,5 +1,5 @@
Gemfile.lock
Berksfile.lock
tmp/
.jamie/
.jamie.local.yml
.kitchen
.kitchen.local.yml
1 change: 1 addition & 0 deletions .jamie.yml → .kitchen.yml
Expand Up @@ -35,6 +35,7 @@ suites:
- name: source
run_list:
- recipe[nodejs]
- recipe[nodejs::npm]
attributes:
nodejs:
install_method: source
15 changes: 12 additions & 3 deletions Gemfile
@@ -1,6 +1,15 @@
source :rubygems
source 'https://rubygems.org'

gem 'foodcritic'
gem 'berkshelf'
gem 'jamie'
gem 'jamie-vagrant'
gem 'thor-foodcritic'
gem 'vagrant', '~> 1.0.6'

group :integration do
gem 'test-kitchen', :git => "git://github.com/opscode/test-kitchen.git", :branch => '1.0'
gem 'kitchen-vagrant', :git => "git://github.com/opscode/kitchen-vagrant.git"

# Change .kitchen.yml's driver_plugin to ec2 and populate
# .kitchen.local.yml's driver_config with aws auth data
gem 'kitchen-ec2', :git => "git://github.com/opscode/kitchen-ec2.git"
end
5 changes: 2 additions & 3 deletions Vagrantfile
@@ -1,9 +1,8 @@
# Automatically install and mount cookbooks from Berksfile

require 'kitchen/vagrant'
require 'berkshelf/vagrant'
require 'jamie/vagrant'

Vagrant::Config.run do |config|
Jamie::Vagrant.define_vms(config)
Kitchen::Vagrant.define_vms(config)
end

0 comments on commit b3c2d8e

Please sign in to comment.