mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Rename option to config.asset_pipeline
This commit is contained in:
parent
612454e00e
commit
651d371a24
5 changed files with 23 additions and 19 deletions
|
@ -21,7 +21,7 @@ module ActionController
|
|||
paths = app.config.paths
|
||||
options = app.config.action_controller
|
||||
|
||||
options.use_sprockets ||= app.config.use_sprockets
|
||||
options.use_sprockets ||= app.config.asset_pipeline
|
||||
options.assets_dir ||= paths["public"].first
|
||||
options.javascripts_dir ||= paths["public/javascripts"].first
|
||||
options.stylesheets_dir ||= paths["public/stylesheets"].first
|
||||
|
|
|
@ -142,7 +142,7 @@ module Rails
|
|||
end
|
||||
|
||||
def build_asset_environment
|
||||
return nil if !config.use_sprockets
|
||||
return unless config.asset_pipeline
|
||||
require 'sprockets'
|
||||
env = Sprockets::Environment.new(root.to_s)
|
||||
env.static_root = root.join("public/assets")
|
||||
|
@ -150,6 +150,7 @@ module Rails
|
|||
end
|
||||
|
||||
initializer :add_sprockets_paths do |app|
|
||||
if config.asset_pipeline
|
||||
[
|
||||
"app/javascripts",
|
||||
"app/stylesheets",
|
||||
|
@ -163,6 +164,7 @@ module Rails
|
|||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ module Rails
|
|||
:preload_frameworks, :reload_plugins,
|
||||
:secret_token, :serve_static_assets, :session_options,
|
||||
:time_zone, :whiny_nils,
|
||||
:use_sprockets, :compile_assets
|
||||
:asset_pipeline, :compile_assets
|
||||
|
||||
attr_writer :log_level
|
||||
|
||||
|
@ -29,7 +29,7 @@ module Rails
|
|||
@log_level = nil
|
||||
@middleware = app_middleware
|
||||
@generators = app_generators
|
||||
@use_sprockets = false
|
||||
@asset_pipeline = false
|
||||
@compile_assets = []
|
||||
end
|
||||
|
||||
|
|
|
@ -34,13 +34,19 @@ module Rails
|
|||
end
|
||||
|
||||
initializer :add_sprockets_route do |app|
|
||||
if config.use_sprockets
|
||||
if config.asset_pipeline
|
||||
app.routes.append do
|
||||
mount app.assets => "/assets"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
initializer :set_sprockets_logger do |app|
|
||||
if config.asset_pipeline
|
||||
app.assets.logger = Rails.logger
|
||||
end
|
||||
end
|
||||
|
||||
initializer :build_middleware_stack do
|
||||
build_middleware_stack
|
||||
end
|
||||
|
|
|
@ -535,10 +535,6 @@ module Rails
|
|||
# consistently executed after all the initializers above across all engines.
|
||||
end
|
||||
|
||||
initializer "sprockets.logger" do
|
||||
assets.logger = Rails.logger
|
||||
end
|
||||
|
||||
rake_tasks do
|
||||
next if self.is_a?(Rails::Application)
|
||||
|
||||
|
|
Loading…
Reference in a new issue