Sha256: f0df0d6d8badf174be7dd7e6028cdd498341da3132a31d6bfba602ecd7cbf4bf
Contents?: true
Size: 1.8 KB
Versions: 5
Compression:
Stored size: 1.8 KB
Contents
require 'rubygems' require 'paranoia' require 'pretender' module Samvera module Persona class Engine < ::Rails::Engine isolate_namespace Samvera::Persona initializer :append_migrations do |app| # only add the migrations if they are not already copied # via the rake task. Allows gem to work both with the install:migrations # and without it. if !app.root.to_s.match(root.to_s) && app.root.join('db/migrate').children.none? {|path| path.fnmatch?("*.samvera_persona.rb")} config.paths["db/migrate"].expanded.each do |expanded_path| app.config.paths["db/migrate"] << expanded_path end end end config.before_initialize do config.i18n.load_path += Dir["#{config.root}/config/locales/**/*.yml"] end config.after_initialize do my_engine_root = Samvera::Persona::Engine.root.to_s paths = ActionController::Base.view_paths.collect{|p| p.to_s} hyrax_path = paths.detect { |path| path.match('/hyrax-') } if hyrax_path paths = paths.insert(paths.index(hyrax_path), my_engine_root + '/app/views') else paths = paths.insert(0, my_engine_root + '/app/views') end ActionController::Base.view_paths = paths ::ApplicationController.send :helper, Samvera::Persona::Engine.helpers ::ApplicationController.send :include, Samvera::Persona::BecomesBehavior ::Devise::InvitationsController.send(:define_method, :after_invite_path_for) do |_resource| main_app.persona_users_path end end config.to_prepare do User.send :include, Samvera::Persona::SoftDeleteBehavior if Samvera::Persona.soft_delete User.send :include, Samvera::Persona::UsernameBehavior end end end end
Version data entries
5 entries across 5 versions & 1 rubygems