Sha256: ad044c4daf6a367d17d9d54347a2dd4a91c4e1b5d0caa3748a4c7df08f2ed274
Contents?: true
Size: 438 Bytes
Versions: 28
Compression:
Stored size: 438 Bytes
Contents
desc 'Run by git post-update hook when deployed to a web server' task :deploy do # This task is typiclly run after the site is updated but before the server is restarted. end desc 'Restart the application server' task :restart do # This task is run after the deployment task above. if passenger_config = `which passenger-config`.chomp! sh(passenger_config, 'restart-app', '--ignore-passenger-not-running', SITE_ROOT.to_s) end end
Version data entries
28 entries across 28 versions & 2 rubygems