7 lines
148 B
Ruby
7 lines
148 B
Ruby
#!/usr/bin/env rake
|
|
|
|
desc 'Download and install gems and cookbooks.'
|
|
task :init do
|
|
sh 'test -e vendor || bundle install --path vendor/bundle'
|
|
end
|