mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Make Rails.application.assets available in initializers
This commit is contained in:
@@ -11,15 +11,20 @@ module Sprockets
|
||||
load "sprockets/assets.rake"
|
||||
end
|
||||
|
||||
# We need to configure this after initialization to ensure we collect
|
||||
# paths from all engines. This hook is invoked exactly before routes
|
||||
# are compiled, and so that other Railties have an opportunity to
|
||||
# register compressors.
|
||||
config.after_initialize do |app|
|
||||
assets = app.config.assets
|
||||
next unless assets.enabled
|
||||
initializer "sprockets.environment" do |app|
|
||||
config = app.config
|
||||
next unless config.assets.enabled
|
||||
|
||||
app.assets = asset_environment(app)
|
||||
require 'sprockets'
|
||||
|
||||
app.assets = Sprockets::Environment.new(app.root.to_s) do |env|
|
||||
env.static_root = File.join(app.root.join('public'), config.assets.prefix)
|
||||
env.logger = ::Rails.logger
|
||||
|
||||
if config.assets.cache_store != false
|
||||
env.cache = ActiveSupport::Cache.lookup_store(config.assets.cache_store) || ::Rails.cache
|
||||
end
|
||||
end
|
||||
|
||||
ActiveSupport.on_load(:action_view) do
|
||||
include ::Sprockets::Helpers::RailsHelper
|
||||
@@ -28,9 +33,32 @@ module Sprockets
|
||||
include ::Sprockets::Helpers::RailsHelper
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# We need to configure this after initialization to ensure we collect
|
||||
# paths from all engines. This hook is invoked exactly before routes
|
||||
# are compiled, and so that other Railties have an opportunity to
|
||||
# register compressors.
|
||||
config.after_initialize do |app|
|
||||
next unless app.assets
|
||||
config = app.config
|
||||
|
||||
config.assets.paths.each { |path| app.assets.append_path(path) }
|
||||
|
||||
if config.assets.compress
|
||||
# temporarily hardcode default JS compressor to uglify. Soon, it will work
|
||||
# the same as SCSS, where a default plugin sets the default.
|
||||
unless config.assets.js_compressor == false
|
||||
app.assets.js_compressor = LazyCompressor.new { expand_js_compressor(config.assets.js_compressor || :uglifier) }
|
||||
end
|
||||
|
||||
unless config.assets.css_compressor == false
|
||||
app.assets.css_compressor = LazyCompressor.new { expand_css_compressor(config.assets.css_compressor) }
|
||||
end
|
||||
end
|
||||
|
||||
app.routes.prepend do
|
||||
mount app.assets => assets.prefix
|
||||
mount app.assets => config.assets.prefix
|
||||
end
|
||||
|
||||
if config.action_controller.perform_caching
|
||||
@@ -39,42 +67,6 @@ module Sprockets
|
||||
end
|
||||
|
||||
protected
|
||||
def asset_environment(app)
|
||||
require "sprockets"
|
||||
|
||||
assets = app.config.assets
|
||||
|
||||
env = Sprockets::Environment.new(app.root.to_s)
|
||||
|
||||
env.static_root = File.join(app.root.join("public"), assets.prefix)
|
||||
|
||||
if env.respond_to?(:append_path)
|
||||
assets.paths.each { |path| env.append_path(path) }
|
||||
else
|
||||
env.paths.concat assets.paths
|
||||
end
|
||||
|
||||
env.logger = ::Rails.logger
|
||||
|
||||
if env.respond_to?(:cache) && assets.cache_store != false
|
||||
env.cache = ActiveSupport::Cache.lookup_store(assets.cache_store) || ::Rails.cache
|
||||
end
|
||||
|
||||
if assets.compress
|
||||
# temporarily hardcode default JS compressor to uglify. Soon, it will work
|
||||
# the same as SCSS, where a default plugin sets the default.
|
||||
unless assets.js_compressor == false
|
||||
env.js_compressor = LazyCompressor.new { expand_js_compressor(assets.js_compressor || :uglifier) }
|
||||
end
|
||||
|
||||
unless assets.css_compressor == false
|
||||
env.css_compressor = LazyCompressor.new { expand_css_compressor(assets.css_compressor) }
|
||||
end
|
||||
end
|
||||
|
||||
env
|
||||
end
|
||||
|
||||
def expand_js_compressor(sym)
|
||||
case sym
|
||||
when :closure
|
||||
|
||||
Reference in New Issue
Block a user