Commit c0e711bb
Changed files (1)
lib
tasks
lib/tasks/deployment.rake
@@ -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
-