Created
August 17, 2011 22:29
-
-
Save kenichi/1152810 to your computer and use it in GitHub Desktop.
sinatra/haml reload templates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
require 'haml' | |
configure do | |
set :reload_templates, true | |
end | |
get '/' do | |
haml :index, :layout => false | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#hello | |
hello world! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment