public
Description: Gift Tracking Website using Sinatra, Sequel, and Scaffolding Extensions
Homepage:
Clone URL: git://github.com/jeremyevans/giftsmas.git
jeremyevans (author)
Fri Jun 26 08:27:19 -0700 2009
commit  f45269c9fb967414864f87ac4cac717899bcd08b
tree    79a60aca37cc842835c7e3d3ffb857c95c72a241
parent  7965966f0d0232d809c4cbbe1789648e25ddfe52
giftsmas / giftsmas_integration.rb
100644 9 lines (8 sloc) 0.186 kb
1
2
3
4
5
6
7
8
9
require 'giftsmas'
puts "Starting"
Rack::Handler.get('mongrel').run(GiftsmasApp, :Host=>'0.0.0.0', :Port=>3003) do |server|
  trap(:INT) do
    server.stop
    puts "Stopping"
  end
end