Omniauth strategy for Ravelry
This is the unofficial OmniAuth strategy for authenticating to Ravelry. To use it, you'll need to request an OAuth2 key and secret . See the Ravlery API Group for more info on getting one.
Basic usage
Add this line to your application's Gemfile:
gem 'omniauth-ravelry'
Set up your strategy:
use OmniAuth::Builder do
provider :ravelry, ENV['RAVELRY_KEY'], ENV['RAVELRY_SECRET']
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request