mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
12 lines
296 B
Ruby
12 lines
296 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|