summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2014-09-29 20:01:03 -0600
committermo khan <mo@mokhan.ca>2014-09-29 20:01:03 -0600
commitc0e711bb9660919805007f24c1ab2edd3496d144 (patch)
treed4f4c06a6e512279dbd8e0b1cb33fba9d1948f2f /lib
parentf01200a2cd046727f33c9eff02a5a55849f0d673 (diff)
remove old deployment rake tasks.
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/deployment.rake14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/tasks/deployment.rake b/lib/tasks/deployment.rake
deleted file mode 100644
index c3c2d3e0..00000000
--- a/lib/tasks/deployment.rake
+++ /dev/null
@@ -1,14 +0,0 @@
-namespace :deploy do
- desc "deploy to staging server"
- task :staging do
- sh "bundle exec cap staging deploy:migrations"
- sh "curl https://staging.cakeside.com/ > /dev/null"
- end
-
- desc "deploy to production server"
- task :production do
- sh "bundle exec cap production deploy:migrations"
- sh "curl https://www.cakeside.com/ > /dev/null"
- end
-end
-