lib/crosstie/templates/bundle_install.rb in crosstie-0.0.6 vs lib/crosstie/templates/bundle_install.rb in crosstie-0.0.7
- old
+ new
@@ -1,2 +1,5 @@
-run "bundle install -V"
-# run "bundle install --local" # for development
+if config['options']['local']
+ run "bundle install --local"
+else
+ run "bundle install --verbose"
+end