Skip to content

Instantly share code, notes, and snippets.

@BrentonEarl
Last active August 29, 2015 14:02
Show Gist options
  • Save BrentonEarl/bba5c0f6205c96a258fe to your computer and use it in GitHub Desktop.
Save BrentonEarl/bba5c0f6205c96a258fe to your computer and use it in GitHub Desktop.
To test the embedding of Gists in jekyll web site.
#!/usr/bin/env ruby
require 'sinatra'
class Application < Sinatra::Base
get '/' do
"Hello World"
end
get '/about' do
"About this site"
end
get '/contact' do
"Contact Us"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment