diff options
author | Ugis Ozols <ugis.ozolss@gmail.com> | 2010-10-25 22:18:20 +0300 |
---|---|---|
committer | Ugis Ozols <ugis.ozolss@gmail.com> | 2010-10-25 22:18:20 +0300 |
commit | 604c21102f05c4950c7b9fd5493a47a9818ca008 (patch) | |
tree | 9230113e89c2045df39e1f4832082693d4b7fca0 /railties/guides | |
parent | 4f0b119b2d36526d7eb35c9e6dd290bedde1758c (diff) | |
download | rails-604c21102f05c4950c7b9fd5493a47a9818ca008.tar.gz rails-604c21102f05c4950c7b9fd5493a47a9818ca008.tar.bz2 rails-604c21102f05c4950c7b9fd5493a47a9818ca008.zip |
Reworded sentence using text from rails source code.
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/action_view_overview.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/action_view_overview.textile b/railties/guides/source/action_view_overview.textile index 0e1a352ebd..54792600a5 100644 --- a/railties/guides/source/action_view_overview.textile +++ b/railties/guides/source/action_view_overview.textile @@ -233,7 +233,7 @@ h4. AssetTagHelper This module provides methods for generating HTML that links views to assets such as images, javascripts, stylesheets, and feeds. -By default, Rails links to these assets on the current host in the public folder, but you can direct Rails to link to assets from a dedicated assets server by setting +ActionController::Base.asset_host+ in your +config/environment.rb+. For example, let's say your asset host is +assets.example.com+: +By default, Rails links to these assets on the current host in the public folder, but you can direct Rails to link to assets from a dedicated assets server by setting +ActionController::Base.asset_host+ in the application configuration, typically in +config/environments/production.rb+. For example, let's say your asset host is +assets.example.com+: <ruby> ActionController::Base.asset_host = "assets.example.com" |