Sha256: 6824ad5fdfca56b51952c1db6197b751ea8150efadcf5097fcc2e74a224de3e4

Contents?: true

Size: 1.08 KB

Versions: 12

Compression:

Stored size: 1.08 KB

Contents

require 'omniauth/oauth'
require 'multi_json'
require 'httparty'
require 'uri'

module ExvoAuth
  autoload :Config, 'exvo_auth/config'
  
  module Strategies
    autoload :Base,           'exvo_auth/strategies/base'
    autoload :Interactive,    'exvo_auth/strategies/interactive'
    autoload :NonInteractive, 'exvo_auth/strategies/non_interactive'
  end

  module Controllers
    autoload :Base,  'exvo_auth/controllers/base'
    autoload :Rails, 'exvo_auth/controllers/rails'
    autoload :Merb,  'exvo_auth/controllers/merb'
  end
  
  module Autonomous
    autoload :Base,     'exvo_auth/autonomous/base'
    autoload :Consumer, 'exvo_auth/autonomous/consumer'
    autoload :Provider, 'exvo_auth/autonomous/provider'
    autoload :Cache,    'exvo_auth/autonomous/cache'
    autoload :Auth,     'exvo_auth/autonomous/auth'
    autoload :Http,     'exvo_auth/autonomous/http'
  end
  
  module OAuth2
    module Strategy
      autoload :NonInteractive, 'exvo_auth/oauth2'
    end
  end
end

OAuth2::Client.class_eval do
  def non_interactive; ExvoAuth::OAuth2::Strategy::NonInteractive.new(self) end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
exvo-auth-0.7.15 lib/exvo-auth.rb
exvo-auth-0.7.14 lib/exvo-auth.rb
exvo-auth-0.7.13 lib/exvo-auth.rb
exvo-auth-0.7.12 lib/exvo-auth.rb
exvo-auth-0.7.11 lib/exvo-auth.rb
exvo-auth-0.7.10 lib/exvo-auth.rb
exvo-auth-0.7.9 lib/exvo-auth.rb
exvo-auth-0.7.8 lib/exvo-auth.rb
exvo-auth-0.7.7 lib/exvo-auth.rb
exvo-auth-0.7.6 lib/exvo-auth.rb
exvo-auth-0.7.5 lib/exvo-auth.rb
exvo-auth-0.7.4 lib/exvo-auth.rb