Skip to content

Instantly share code, notes, and snippets.

@nicgrayson
Created October 2, 2013 16:42
Show Gist options
  • Select an option

  • Save nicgrayson/6796646 to your computer and use it in GitHub Desktop.

Select an option

Save nicgrayson/6796646 to your computer and use it in GitHub Desktop.
require 'chefspec'
require 'berkshelf'
require 'fileutils'
Berkshelf.ui.mute!
berks = Berkshelf::Berksfile.from_file(File.expand_path('Berksfile'))
berks.install(path: "vendor/cookbooks", only: "external")
RSpec.configure do |c|
c.after(:suite) do
FileUtils.rm_rf("vendor")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment