lib/alpha_omega/deploy.rb in alpha_omega-1.1.11 vs lib/alpha_omega/deploy.rb in alpha_omega-1.2.0
- old
+ new
@@ -622,27 +622,27 @@
end # :deploy
namespace :ruby do
task :bundle do
- run "cd #{deploy_release} && bin/bundle-ruby #{ruby_loader} -- #{bundler_options}"
+ run "cd #{deploy_release} && bin/build ruby #{ruby_loader} -- #{bundler_options}"
end
end
after "deploy:bundle", "ruby:bundle"
namespace :node do
task :bundle do
- run "cd #{deploy_release} && bin/bundle-node"
+ run "cd #{deploy_release} && bin/build node"
end
end
after "deploy:bundle", "node:bundle"
namespace :assets do
task :build do
unless deploy_path_name == migrate_path_name
- run "cd #{deploy_release} && RAILS_ENV=#{dna["app_env"]} bin/bundle-assets"
+ run "cd #{deploy_release} && RAILS_ENV=#{dna["app_env"]} bin/build assets"
end
end
end
after "deploy:build", "assets:build"