Skip to content

Instantly share code, notes, and snippets.

@rkitover
Created March 28, 2013 00:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rkitover/5259355 to your computer and use it in GitHub Desktop.
Save rkitover/5259355 to your computer and use it in GitHub Desktop.
#!/home/rkitover/.rvm/rubies/ruby-2.0.0-p0/bin/ruby
require 'sinatra/base'
class MyApp < Sinatra::Base
get '/' do
'Hello, World!'
end
end
Rack::Handler::CGI.run MyApp.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment