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 20:14:37 -04:00
|
|
|
autoload :SoundCloud, 'omniauth/strategies/soundcloud'
|
2010-06-12 22:43:07 -04:00
|
|
|
end
|
|
|
|
end
|