TheAuth is a Rails Engine for user authentification, more easy to use, more easy to override.
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;
add this under config/initializers
TheAuth.configure do |config|
config.layout = :application # the_auth view 的layout
end
add the in the file: config/routes.rb
class ApplicationController < ActionController::Base
include TheAuthController
end
class User
include TheAuthUser
end
# in controller
current_user