# File lib/meez/meez.rb, line 173 def self.bundle_install(cookbook_name, options) require 'bundler' puts '* Running bundle install' path = File.join(options[:path], cookbook_name) puts "\t append .gitignore" Bundler.with_clean_env { exec({ 'BUNDLE_GEMFILE' => "#{path}/Gemfile" }, 'bundle install') } end