Skip to content

Instantly share code, notes, and snippets.

@xrd
Last active January 1, 2016 11:29
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 xrd/8138797 to your computer and use it in GitHub Desktop.
Save xrd/8138797 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
gem 'sinatra'
gem "byebug"
GEM
remote: https://rubygems.org/
specs:
rack (1.5.2)
rack-protection (1.5.1)
rack
sinatra (1.4.4)
rack (~> 1.4)
rack-protection (~> 1.4)
tilt (~> 1.3, >= 1.3.4)
tilt (1.4.1)
PLATFORMS
ruby
DEPENDENCIES
sinatra
require 'sinatra'
get '/hi' do
"Hello World!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment