Simple Auth =========== SimpleAuth is an authentication library to be used when Authlogic & Devise are just too complicated. This library only supports in-site authentication and won't implement OpenID, Facebook Connect and like. Installation ------------ As plugin: script/plugin install git://github.com/fnando/simple_auth.git As gem: sudo gem install simple_auth Then run `script/generate simple_auth` to copy the initializer file. Usage ----- Your user model should have the attributes `password_hash` and `password_salt`. The credential field can be anything you want, but SimpleAuth uses `[:email, :login]` by default. class CreateUsers < ActiveRecord::Migration def self.up create_table :users do |t| t.string :email t.string :login t.string :password_hash t.string :password_salt t.timestamps end add_index :users, :email add_index :users, :login add_index :users, [:email, :login] end def self.down drop_table :users end end If your user model is other than `User`, you have to set it in your `config/initializer/simple_auth.rb` initializer file. You can also set up the credentials attributes. SimpleAuth.setup do |config| config.model = :account config.credentials = [:username] end On your model, call the method `has_authentication`. class User < ActiveRecord::Base has_authentication end This will add some callbacks and password validations. After you set up the model, you can go the controller. class SessionsController < ApplicationController def new @user_session = SimpleAuth::Session.new end def create @user_session = SimpleAuth::Session.new(params[:session]) if @user_session.save redirect_to dashboard_path else flash[:warning] = "Invalid username or password" render :new end end def destroy current_session.destroy if logged_in? redirect_to root_path end end There are some helpers: logged_in? # controller & views current_user # controller & views current_session # controller & views when_logged(&block) # views Troubleshooting --------------- You may receive strange errors related to `can't dup NilClass` or `You have a nil object when you didn't expect it!`. This will occur only on development mode and is an ActiveRecord bug that hasn't been fixed. Open the ActiveRecord file `activerecord-2.3.5/lib/active_record/base.rb` and comment the lines 411-412: klass.instance_variables.each { |var| klass.send(:remove_instance_variable, var) } klass.instance_methods(false).each { |m| klass.send :undef_method, m } Dirty, but it works. Here's the ticket for this issue: [Issue #1290](https://rails.lighthouseapp.com/projects/8994/tickets/1290-activerecord-raises-randomly-apparently-a-timezone-issue#ticket-1290-30) To-Do ----- * Write README Maintainer ---------- * Nando Vieira () License: -------- (The MIT License) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.