2010-04-04 23:30:40 -04:00
|
|
|
require 'omniauth/core'
|
2010-06-12 22:43:07 -04:00
|
|
|
|
|
|
|
module OmniAuth
|
|
|
|
module Strategies
|
2010-06-18 21:48:44 -04:00
|
|
|
autoload :OAuth, 'omniauth/strategies/oauth'
|
|
|
|
autoload :OAuth2, 'omniauth/strategies/oauth2'
|
2010-06-12 22:43:07 -04:00
|
|
|
|
2010-06-18 21:48:44 -04:00
|
|
|
autoload :Twitter, 'omniauth/strategies/twitter'
|
|
|
|
autoload :LinkedIn, 'omniauth/strategies/linked_in'
|
|
|
|
autoload :Facebook, 'omniauth/strategies/facebook'
|
|
|
|
autoload :GitHub, 'omniauth/strategies/github'
|
|
|
|
autoload :ThirtySevenSignals, 'omniauth/strategies/thirty_seven_signals'
|
2010-10-01 11:31:02 -04:00
|
|
|
autoload :Foursquare, 'omniauth/strategies/foursquare'
|
2010-10-07 11:48:13 -04:00
|
|
|
autoload :Gowalla, 'omniauth/strategies/gowalla'
|
2010-10-11 15:42:46 -04:00
|
|
|
autoload :Identica, 'omniauth/strategies/identica'
|
2010-10-19 10:41:53 -04:00
|
|
|
autoload :TripIt, 'omniauth/strategies/trip_it'
|
2010-10-15 09:35:14 -04:00
|
|
|
autoload :Dopplr, 'omniauth/strategies/dopplr'
|
2010-10-20 15:15:48 -04:00
|
|
|
autoload :Meetup, 'omniauth/strategies/meetup'
|
2010-10-20 20:20:54 -04:00
|
|
|
autoload :SoundCloud, 'omniauth/strategies/sound_cloud'
|
2010-10-28 04:43:49 -04:00
|
|
|
autoload :SmugMug, 'omniauth/strategies/smug_mug'
|
2010-12-16 09:32:23 -05:00
|
|
|
autoload :Goodreads, 'omniauth/strategies/goodreads'
|
2010-12-29 13:54:36 -05:00
|
|
|
autoload :Yahoo, 'omniauth/strategies/yahoo'
|
2010-12-29 15:17:44 -05:00
|
|
|
autoload :TypePad, 'omniauth/strategies/type_pad'
|
2010-12-29 15:52:31 -05:00
|
|
|
autoload :Google, 'omniauth/strategies/google'
|
2011-01-02 21:31:24 -05:00
|
|
|
autoload :Netflix, 'omniauth/strategies/netflix'
|
2011-01-03 17:34:01 -05:00
|
|
|
autoload :Bitly, 'omniauth/strategies/bitly'
|
2010-06-12 22:43:07 -04:00
|
|
|
end
|
|
|
|
end
|