mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
10 lines
265 B
Ruby
10 lines
265 B
Ruby
module AbstractController
|
|
module AssetPaths #:nodoc:
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
config_accessor :asset_host, :assets_dir, :javascripts_dir,
|
|
:stylesheets_dir, :default_asset_host_protocol, :relative_url_root
|
|
end
|
|
end
|
|
end
|