Created
July 13, 2012 01:35
-
-
Save mikeebert/3102199 to your computer and use it in GitHub Desktop.
Start of Sinatra-Warden
This file contains hidden or 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 'warden' | |
| class YourApp < Sinatra::Application | |
| use Rack::Session::Cookie | |
| get "/" do | |
| erb 'index'.to_sym | |
| end | |
| get "/protected_pages" do | |
| erb 'admin_only_page'.to_sym | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment