Skip to content

Instantly share code, notes, and snippets.

@nuke99

nuke99/app.rb Secret

Created October 23, 2012 15:04
Show Gist options
  • Save nuke99/943f2b8a82ff77638947 to your computer and use it in GitHub Desktop.
Save nuke99/943f2b8a82ff77638947 to your computer and use it in GitHub Desktop.
require 'rubygems' if RUBY_VERSION < '1.9'
require 'sinatra/base'
class MyApp < Sinatra::Base
get '/' do
"Hello World"
end
end
require './app'
MyApp.run!
system("xdg-open","http://127.0.0.1:4567")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment