Sha256: 6f78abf5c8330cdb30184c80f7bc6fa9c51edd6e9d1f5a392017aae99369d343
Contents?: true
Size: 1.96 KB
Versions: 6
Compression:
Stored size: 1.96 KB
Contents
# requires all dependencies Gem.loaded_specs['avo'].dependencies.each do |d| require d.name end module Avo class Engine < ::Rails::Engine isolate_namespace Avo initializer 'avo.autoload', before: :set_autoload_paths do |app| { 'Avo::Resources': ['app', 'avo', 'resources'], 'Avo::Filters': ['app', 'avo', 'filters'], 'Avo::Actions': ['app', 'avo', 'actions'], }.each do |namespace, path| next unless Rails.root.join(*path).exist? Rails.autoloaders.main.push_dir(Rails.root.join(*path), namespace: namespace.to_s.safe_constantize) end end initializer 'avo.init' do |app| avo_root_path = Avo::Engine.root.to_s if ['development', 'test'].include? Rails.env # Register reloader app.reloaders << app.config.file_watcher.new([], { Avo::Engine.root.join('lib', 'avo').to_s => ['rb'], }) {} # What to do on file change config.to_prepare do Dir.glob(avo_root_path + '/lib/avo/app/**/*.rb'.to_s).each { |c| load(c) } end end if Rails.env.production? Dir.glob(avo_root_path + '/lib/avo/app/**/*.rb'.to_s).each { |c| load(c) } Avo::App.init end end initializer 'webpacker.proxy' do |app| app.config.debug_exception_response_format = :api app.config.logger = ::Logger.new(STDOUT) insert_middleware = begin Avo.webpacker.config.dev_server.present? rescue nil end if insert_middleware app.middleware.insert_before( 0, Webpacker::DevServerProxy, ssl_verify_none: true, webpacker: Avo.webpacker ) end end config.app_middleware.use( Rack::Static, urls: ['/avo-packs'], root: Avo::Engine.root.join('public') ) config.generators do |g| g.test_framework :rspec, view_specs: false end end end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
avo-0.2.5 | lib/avo/engine.rb |
avo-0.2.4 | lib/avo/engine.rb |
avo-0.2.3 | lib/avo/engine.rb |
avo-0.2.2 | lib/avo/engine.rb |
avo-0.2.1 | lib/avo/engine.rb |
avo-0.2.0 | lib/avo/engine.rb |