Skip to content

whmall/the_auth

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TheAuth

TheAuth is a Rails Engine for user authentification, more easy to use, more easy to override.

Description

There are so many gems about auth, I seprated the engine from our projects because of:

  • more easy to understand and use, for example, devise is good, but difficult to override and config, it's unfriendly to fresh developers;

  • more easy to config, just normal rails contorller model and views;

  • used ActiveModel::SecurePassword which default included by rails, make so easy to do Password;

How To Use

Config TheAuth

add this under config/initializers

TheAuth.configure do |config|
  config.layout = :application  # the_auth view 的layout
end

Overwrite Routes

add the in the file: config/routes.rb

include in Controller

class ApplicationController < ActionController::Base
  include TheAuthController
end

Include in Model

class User
  include TheAuthUser
end

The methods TheAuth provided:

# in controller
current_user

Packages

No packages published

Languages

  • Ruby 63.8%
  • HTML 35.3%
  • JavaScript 0.9%