Rename option to config.asset_pipeline

This commit is contained in:
Joshua Peek 2011-03-29 21:23:05 -05:00
parent 612454e00e
commit 651d371a24
5 changed files with 23 additions and 19 deletions

@ -21,7 +21,7 @@ class Railtie < Rails::Railtie
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 @@ def assets
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 @@ def build_asset_environment
end
initializer :add_sprockets_paths do |app|
if config.asset_pipeline
[
"app/javascripts",
"app/stylesheets",
@ -163,6 +164,7 @@ def build_asset_environment
end
end
end
end
protected

@ -10,7 +10,7 @@ class Configuration < ::Rails::Engine::Configuration
: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 @@ def initialize(*)
@log_level = nil
@middleware = app_middleware
@generators = app_generators
@use_sprockets = false
@asset_pipeline = false
@compile_assets = []
end

@ -34,13 +34,19 @@ module Finisher
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 @@ def load_seed
# 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)