lib/dply/tasks.rb in dply-0.2.4 vs lib/dply/tasks.rb in dply-0.2.5
- old
+ new
@@ -9,25 +9,25 @@
class Tasks
include Helper
def deploy(target)
- bundle.install_deployment
+ bundle.install
rake "#{target}:deploy"
end
def reload(target)
- bundle.install_deployment
+ bundle.install
rake "#{target}:reload"
end
def task(task)
- bundle.install_deployment
+ bundle.install
rake task
end
def build(task)
- bundle.install_deployment
+ bundle.install
bundle.clean
rake task
end
def rake(task)