Guest User

Untitled

a guest
Jun 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. require "rubygems"
  2.  
  3. require "sinatra/base"
  4. require "haml"
  5.  
  6. class MyApp < Sinatra::Base
  7.  
  8. set :public, File.dirname(__FILE__) + '/public'
  9.  
  10. get '/' do
  11. haml :index
  12. end
  13.  
  14. end
Add Comment
Please, Sign In to add comment