lib/codelation/rails/new.rb in codelation-cli-0.1.0 vs lib/codelation/rails/new.rb in codelation-cli-0.1.1
- old
+ new
@@ -34,9 +34,11 @@
run_command("git add .")
run_command('git commit -m "Initial commit"')
print_command("Installing dependencies")
run_command("bundle install")
+ run_command("npm install")
+ run_command("node_modules/.bin/bower install")
return if no?("-----> Setup database? [y/N]")
run_command("rake db:setup")
end
end