public
Description: Deploy Rails applications automatically by running Capistrano tasks with Git post-commit hooks
Homepage: http://www.restafari.org/pushr-or-the-application-will-deploy-itself.html
Clone URL: git://github.com/karmi/pushr.git
pushr / config.ru
100644 10 lines (6 sloc) 0.193 kb
1
2
3
4
5
6
7
8
9
10
$LOAD_PATH << File.dirname( File.expand_path(__FILE__) )
require 'pushr'
 
set :app_file, 'pushr.rb'
set :environment, :production
 
disable :run, :reload
 
run Sinatra::Application