Sha256: c6b3e8c7b611ce671dc2e6204a0a574169a300a8b5f0abff2df80fb07f0dfc6c
Contents?: true
Size: 1.3 KB
Versions: 7
Compression:
Stored size: 1.3 KB
Contents
require 'apartment' require 'ims/lti' 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' do |app| ActiveSupport.on_load(:action_controller) do Rails.application.reload_routes! PandaPal::propagate_lti_navigation end end end end
Version data entries
7 entries across 7 versions & 1 rubygems