Sha256: aa70bcfd1562dff7be0345c02d4487a9dbd27ca3e0237c52b52ffeebdb6b3a8a

Contents?: true

Size: 1.41 KB

Versions: 9

Compression:

Stored size: 1.41 KB

Contents

require 'apartment'
require 'delayed_job_active_record'
require 'ims/lti'
require 'oauth/request_proxy/rack_request'

module PandaPal
  class Engine < ::Rails::Engine
    config.autoload_once_paths += Dir["#{config.root}/lib/**/"]

    isolate_namespace PandaPal

    config.generators do |g|
      g.test_framework :rspec
      g.fixture_replacement :factory_girl, :dir => 'spec/factories'
    end

    initializer :append_migrations do |app|
      unless app.root.to_s.match root.to_s
        config.paths["db/migrate"].expanded.each do |expanded_path|
          app.config.paths["db/migrate"] << expanded_path
        end
        # Apartment will modify this, but it doesn't fully support engine migrations, so we'll reset it here
        ActiveRecord::Migrator.migrations_paths = Rails.application.paths['db/migrate'].to_a
      end
    end

    initializer 'panda_pal.app_controller' do |app|
      OAUTH_10_SUPPORT = true
      ActiveSupport.on_load(:action_controller) do
        include PandaPal::Helpers::ControllerHelper
      end
    end

    initializer 'panda_pal.route_helper' do |route|
      ActionDispatch::Routing::Mapper.send :include, PandaPal::Helpers::RouteHelper
    end

    initializer 'panda_pal.route_options', :after => :disable_dependency_loading do |app|
      ActiveSupport.on_load(:action_controller) do
        Rails.application.reload_routes!
        PandaPal::propagate_lti_navigation
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
panda_pal-1.0.2 lib/panda_pal/engine.rb
panda_pal-1.0.1 lib/panda_pal/engine.rb
panda_pal-0.1.0 lib/panda_pal/engine.rb
panda_pal-1.0.0 lib/panda_pal/engine.rb
panda_pal-0.0.8 lib/panda_pal/engine.rb
panda_pal-0.0.7 lib/panda_pal/engine.rb
panda_pal-0.0.6 lib/panda_pal/engine.rb
panda_pal-0.0.5 lib/panda_pal/engine.rb
panda_pal-0.0.4 lib/panda_pal/engine.rb