https://github.com/remind101/devise-access_token_authenticatable
Access tokens for devise
https://github.com/remind101/devise-access_token_authenticatable
Last synced: 11 months ago
JSON representation
Access tokens for devise
- Host: GitHub
- URL: https://github.com/remind101/devise-access_token_authenticatable
- Owner: remind101
- License: mit
- Created: 2013-08-12T15:46:26.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-12-17T18:31:23.000Z (over 12 years ago)
- Last Synced: 2025-01-10T16:37:28.624Z (over 1 year ago)
- Language: Ruby
- Size: 105 KB
- Stars: 0
- Watchers: 97
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Access Token Authenticatable
A devise module that provides something a little more full featured than token
authenticatable.
## Installation
Add this line to your application's Gemfile:
gem 'devise-access_token_authenticatable'
## Assumptions
You have an `AccessToken` model that responds to the following methods:
* `invalidate!`: Invalidates the token, making it unusable for authentication.
* `fresh?`: Whether or not the token can be used to authenticate the user.
* `used!`: Called whenever the token is used.
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request