Skip to content

webrajsc/sinatra_warden

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sinatra::Warden

A Sinatra (github.com/sinatra/sinatra) module that provides authentication for your Sinatra application through Warden (github.com/hassox/warden).

Usage

require 'sinatra'
require 'sinatra_warden'

class Application < Sinatra::Base
  enable :sessions # or set :sessions, true
  register Sinatra::Warden

  get '/admin' do
    authorize!('/login') # require session, redirect to '/login' instead of work
    haml :admin
  end

  get '/dashboard' do
    authorize! # require a session for this action
    haml :dashboard
  end
end

More Information

Please read the wiki (wiki.github.com/jsmestad/sinatra_warden) for more information on more advanced configurations.

Note on Patches/Pull Requests

$ git clone git://github.com/jsmestad/sinatra_warden.git
$ cd sinatra_warden
$ bundle install
$ bundle exec rake
  • Fork the project.

  • Make your feature addition or bug fix.

  • Add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Commit, do not mess with rakefile, version, or history.

  • Send me a pull request. Bonus points for topic branches.

Contributors

Copyright © 2009 Justin Smestad. See LICENSE for details.

About

Authentication module for sinatra and some auth helpers

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%