Skip to content

Instantly share code, notes, and snippets.

@komagata
Created February 22, 2012 12:07
Show Gist options
  • Save komagata/1884538 to your computer and use it in GitHub Desktop.
Save komagata/1884538 to your computer and use it in GitHub Desktop.
Views not change on production.
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