Skip to content

Instantly share code, notes, and snippets.

@iamteem
Created July 4, 2010 19:24
Show Gist options
  • Save iamteem/463678 to your computer and use it in GitHub Desktop.
Save iamteem/463678 to your computer and use it in GitHub Desktop.
class Main < Monk::Glue
set :app_file, __FILE__
use Rack::Session::Cookie,
:key => 'rack.session',
:domain => 'foo.com',
:path => '/',
:expire_after => 2592000,
:secret => 'change_me'
use Rack::Flash
register Sinatra::LilAuthentication
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment