Sha256: 970adec2a3ae573bd6932ac0653603d2cc1b0f217d979d8115aeffe4ef594a5d
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
require 'pageflow/rails_version' module PageflowPaged # Rails integration class Engine < ::Rails::Engine isolate_namespace PageflowPaged lib = root.join('lib') config.autoload_paths << lib config.eager_load_paths << lib initializer 'pageflow_paged.autoloading' do Rails.autoloaders.main.ignore( lib.join('tasks') ) end config.i18n.load_path += Dir[config.root.join('config', 'locales', '**', '*.yml').to_s] initializer 'pageflow_paged.assets.precompile' do |app| # Pageflow Paged requires an older version of React than the one # that comes bundled with react-rails. The React builds from the # originally used version of react-rails have been copied to # paged/vendor/assets/javascripts/<env>/pageflow_paged/vendor. # # Replicate the react-rails setup to use different React builds # based on the Rails environment. variant = Rails.env.production? ? 'production' : 'development' app.config.assets.paths << config.root.join('vendor', 'assets', 'javascripts', variant).to_s app.config.assets.precompile += %w[ pageflow_paged/vendor.js pageflow_paged/editor.js pageflow_paged/frontend.js pageflow_paged/server_rendering.js pageflow_paged/editor.css ] end end end
Version data entries
6 entries across 6 versions & 1 rubygems