Sha256: 0f47b1891ae89602daee2de5a3cb83ac28c9b6687e1dd9c4361229fa491e9b8e
Contents?: true
Size: 762 Bytes
Versions: 15
Compression:
Stored size: 762 Bytes
Contents
# ### Shortcuts: uncomment these for easier to type deployments # ### e.g. rake deploy (instead of rake heroku:deploy) # ### # task :deploy => ["heroku:deploy"] # task :console => ["heroku:console"] # task :setup => ["heroku:setup"] # task :logs => ["heroku:logs"] # task :restart => ["heroku:restart"] # Heroku Deploy Callbacks namespace :heroku do # runs before all the deploys complete task :before_deploy do end # runs before each push to a particular heroku deploy environment task :before_each_deploy, [:app_name] do |t,args| end # runs after each push to a particular heroku deploy environment task :after_each_deploy, [:app_name] do |t,args| end # runs after all the deploys complete task :after_deploy do end end
Version data entries
15 entries across 15 versions & 3 rubygems