Sha256: f3ed7d0e329ab8ff6077ec26af8486623a83c0c14a1e7dbbd667c160d23354a6

Contents?: true

Size: 630 Bytes

Versions: 5

Compression:

Stored size: 630 Bytes

Contents

%w{ models controllers }.each do  |dir|
  path = File.join(File.expand_path(__FILE__+'/../..'), 'app', dir)
  $LOAD_PATH << path
  ActiveSupport::Dependencies.load_paths << path
  ActiveSupport::Dependencies.load_once_paths.delete(path)
end

require 'puavo/authentication'
require 'puavo/connection'
require 'puavo/organisation'

require 'puavo_authentication/controllers/helpers'

ActionController::Base.send :include, PuavoAuthentication::Controllers::Helpers

begin
  Puavo::OAUTH_CONFIG = YAML.load_file("#{ RAILS_ROOT }/config/oauth.yml")
rescue Errno::ENOENT => e
  Puavo::OAUTH_CONFIG = nil
  puts "WARNING: " + e.to_s
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
puavo_authentication-0.2.5 rails/init.rb
puavo_authentication-0.2.4 rails/init.rb
puavo_authentication-0.2.3 rails/init.rb
puavo_authentication-0.2.2 rails/init.rb
puavo_authentication-0.2.1 rails/init.rb