Skip to content

Instantly share code, notes, and snippets.

@inossidabile
Created January 28, 2013 15:55
Show Gist options
  • Save inossidabile/4656653 to your computer and use it in GitHub Desktop.
Save inossidabile/4656653 to your computer and use it in GitHub Desktop.
require "rubygems"
require "bundler/setup"
require "eventmachine"
require "thin"
require "sinatra/base"
EventMachine.run do
class App < Sinatra::Base
get '/' do
"test"
end
end
App.run! :port => 3000
App.run! :port => 3001
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment