No release in over 3 years
Low commit activity in last 3 years
OmniAuth strategy for Mavenlink.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Omniauth Mavenlink

This is an OmniAuth strategy for authenticating to Mavenlink. To use it, you will need to add an OAuth2 application in Mavenlink and have the Client ID and Client Secret.

For more information about the Mavenlink API: http://developer.mavenlink.com/

Basic Usage

If you are using Rails, add the gem to your Gemfile:

gem 'omniauth-mavenlink'

Once installed, add the following to config/initializers/omniauth.rb:

use OmniAuth::Builder do
  provider :mavenlink, ENV['MAVENLINK_KEY'], ENV['MAVENLINK_SECRET']
end