Sha256: 79bb7d1209a5fef6171445d32d0d2c366d5925a4cd8ca3f13408c1fa4e7c47dc
Contents?: true
Size: 1.87 KB
Versions: 2
Compression:
Stored size: 1.87 KB
Contents
def require_name(dependency_name) case dependency_name when 'devise-doorkeeper' 'devise/doorkeeper' else dependency_name end end Gem.loaded_specs['hackathon_manager'].dependencies.each do |d| require require_name(d.name) end module HackathonManager class Engine < ::Rails::Engine initializer "hackathon_manager.assets.precompile" do |app| app.config.assets.precompile += %w[ hackathon_manager/manage.css hackathon_manager/core.css hackathon_manager/home.css hackathon_manager/vendor/*.js hackathon_manager/vendor/*.css hackathon_manager/mailer.css ] end # Initializer to combine this engines static assets with the static assets of the hosting site. initializer "static assets" do |app| app.middleware.insert_before(::ActionDispatch::Static, ::ActionDispatch::Static, "#{root}/public") end initializer 'hackathon_manager.factories', after: 'factory_bot.set_factory_paths' do if defined?(FactoryBot) FactoryBot.definition_file_paths << File.expand_path('../../test/factories', __dir__) # doorkeeper_dir = Gem::Specification.find_by_name('doorkeeper').gem_dir # FactoryBot.definition_file_paths << File.join(doorkeeper_dir, 'spec/factories') end end ActionController::Base.class_eval do # Tell Devise where to redirect the user once they sign in def after_sign_in_path_for(resource) stored_location = stored_location_for(resource) if stored_location stored_location elsif current_user.admin? || current_user.admin_limited_access? manage_root_path elsif current_user.questionnaire.nil? new_questionnaires_path else @questionnaire = current_user.questionnaire @questionnaire.can_rsvp? ? rsvp_path : questionnaires_path end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hackathon_manager-0.14.1 | lib/hackathon_manager/engine.rb |
hackathon_manager-0.14.0 | lib/hackathon_manager/engine.rb |