Sha256: 786ffcc3a70f86dd2e9d403c98baeb4e179e031aeda3f900339c32b604a6b9ec
Contents?: true
Size: 995 Bytes
Versions: 1
Compression:
Stored size: 995 Bytes
Contents
# Omniauth::MapMyFitness OmniAuth Strategy for [Map My Fitness API](http://api.mapmyfitness.com/3.1/) ## Installation Add this line to your application's Gemfile: ```ruby gem 'omniauth-mapmyfitness' ``` And then execute: ```ruby $ bundle ``` Or install it yourself as: ```ruby $ gem install omniauth-mapmyfitness ``` ## Usage To integrate the strategy into your middleware: ```ruby use OmniAuth::Builder do provider :mapmyfitness, ENV['consumer_key'], ENV['secret_key'] end ``` In Rails, you'll want to add a middleware stack or define it inside an initializer file `config/initializers/omniauth.rb` ```ruby Rails.application.config.middleware.use OmniAuth::Builder do provider :mapmyfitness, ENV['consumer_key'], ENV['secret_key'] end ``` ## 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
omniauth-mapmyfitness-0.1.2 | README.md |