Sha256: b6a7fe64d50ea024b7a46611983e4d973f105c7c693e0fd22d13047a62ff7805
Contents?: true
Size: 349 Bytes
Versions: 8
Compression:
Stored size: 349 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 if falcon = `which falcon`.chomp! and File.exist?("supervisor.ipc") sh(falcon, 'supervisor', 'restart') end end
Version data entries
8 entries across 8 versions & 1 rubygems