summaryrefslogtreecommitdiff
path: root/lib/tasks
diff options
context:
space:
mode:
authormo k <mo@mokhan.ca>2013-02-08 23:51:39 -0700
committermo k <mo@mokhan.ca>2013-02-08 23:51:39 -0700
commitc2838c2dc6d7a0f7aa28cca643df53f105f72b42 (patch)
treef406f03c06f70ae1061e5ffb89df08bfec8bce22 /lib/tasks
parentf226acc725407a8c7da25305019ff60112280af2 (diff)
remove comments
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/deployment.rake4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/tasks/deployment.rake b/lib/tasks/deployment.rake
index fdf9460d..3af04967 100644
--- a/lib/tasks/deployment.rake
+++ b/lib/tasks/deployment.rake
@@ -8,14 +8,10 @@ namespace :deploy do
task :production, :tag do |t, args|
tag_to_deploy = args.tag
if tag_to_deploy.blank?
- #puts "please specify the name of the tag to deploy"
- #puts "E.g. rake deploy:production['staging-2012-06-02-1-mo-user-settings']"
sh "cap production deploy:migrations"
else
puts "deploying to production from tag #{tag_to_deploy}"
sh "cap production deploy:migrations -s tag=#{tag_to_deploy}"
- #sh "cap production deploy -s tag=#{tag_to_deploy}"
- #sh "cap production deploy:migrations"
sh "curl http://cakeside.com/ > /dev/null"
end
end