Created
February 22, 2012 12:07
-
-
Save komagata/1884538 to your computer and use it in GitHub Desktop.
Views not change on production.
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 'rubygems' | |
require 'sinatra' | |
before '/foo' do | |
puts "env: #{settings.environment}" | |
settings.views = 'foo' | |
end | |
get '/' do | |
settings.views | |
end | |
get '/foo' do | |
settings.views | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment