EasyAuth

Build Status Dependency Status Code Climate

Dead simple drop in authentication for Rails

Installation

In your Gemfile add the following:

gem 'easy_auth'

After running Bundler you'll need to install the migrations:

rake easy_auth:install:migrations

Then run your migrations.

You should also run the generator:

rails g easy_auth:setup

You will need to mix-in a few modules into your application:

class ApplicationController < ActionController::Base
  include EasyAuthHelper
end
class User < ActiveRecord::Base
   include EasyAuth::Models::Account
end

Your application is now ready for EasyAuth.

Usage

You will need to use one of the many plugins available for EasyAuth to provide a specific authentication strategy.

Authors

Brian Cardarella

We are very thankful for the many contributors

Versioning

This gem follows Semantic Versioning

Want to help?

Please do! We are always looking to improve this gem. Please see our Contribution Guidelines on how to properly submit issues and pull requests.

DockYard, LLC © 2012

@dockyard

Licensed under the MIT license