aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-02-28 01:09:31 -0800
committerXavier Noria <fxn@hashref.com>2012-02-28 01:09:31 -0800
commit43faccf45fed33a5e529d0a156f958b9d8b785b7 (patch)
tree5c39885d6e8ebb8b33849f5a93bcf28e240d9240
parentd17e44edde24def1e90999abfc6a343a65196271 (diff)
parente87f1aa0216be1874af165b57fbacbf32ea08f22 (diff)
downloadrails-43faccf45fed33a5e529d0a156f958b9d8b785b7.tar.gz
rails-43faccf45fed33a5e529d0a156f958b9d8b785b7.tar.bz2
rails-43faccf45fed33a5e529d0a156f958b9d8b785b7.zip
Merge pull request #5199 from gabehollombe/master
The language for describing how to configure ActionController::Base.asset_host could be clearer
-rw-r--r--actionpack/lib/action_view/helpers/asset_tag_helper.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
index 662adbe183..6dd52d8186 100644
--- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
@@ -24,9 +24,10 @@ module ActionView
# server by setting ActionController::Base.asset_host in the application
# configuration, typically in <tt>config/environments/production.rb</tt>.
# For example, you'd define <tt>assets.example.com</tt> to be your asset
- # host this way:
+ # host this way, inside the <tt>configure</tt> block of your environment-specific
+ # configuration files or <tt>config/application.rb</tt>:
#
- # ActionController::Base.asset_host = "assets.example.com"
+ # config.action_controller.asset_host = "assets.example.com"
#
# Helpers take that into account:
#