CurrentMe
CurrentMe possesses a current user by a session
Installation
Add this line to your application's Gemfile:
gem 'current_me'
And then execute:
$ bundle
Or install it yourself as:
$ gem install current_me
Usage
Controllers
-
When signing, use the
sign_in
sign_in user
(※user
needs to be a user model)
-
To Transition to designated page if a user isn't signed in, use the
me!
me! signin_path
-
When signing out, use the
sign_out
def destroy sign_out redirect_to :root end
Controllers and Views
-
If current signed-in user,
me
is availableWelcome <%= me.name %>
-
To verify if a user is signed in, use the
me?
<% if me? %>
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request