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_insign_in user(※
userneeds to be a user model)To Transition to designated page if a user isn't signed in, use the
me!me! signin_pathWhen signing out, use the
sign_outdef destroy sign_out redirect_to :root end
Controllers and Views
If current signed-in user,
meis 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