aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller/asset_paths.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/abstract_controller/asset_paths.rb')
-rw-r--r--actionpack/lib/abstract_controller/asset_paths.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/actionpack/lib/abstract_controller/asset_paths.rb b/actionpack/lib/abstract_controller/asset_paths.rb
index b104d34fb5..822254b1a4 100644
--- a/actionpack/lib/abstract_controller/asset_paths.rb
+++ b/actionpack/lib/abstract_controller/asset_paths.rb
@@ -1,9 +1,10 @@
module AbstractController
- module AssetPaths
+ module AssetPaths #:nodoc:
extend ActiveSupport::Concern
included do
- config_accessor :asset_host, :asset_path, :assets_dir, :javascripts_dir, :stylesheets_dir
+ config_accessor :asset_host, :asset_path, :assets_dir, :javascripts_dir,
+ :stylesheets_dir, :default_asset_host_protocol, :relative_url_root
end
end
end