From 9959fa2d155164e6c9f286fd4bcf8c4ab130951e Mon Sep 17 00:00:00 2001 From: Ryan Bigg Date: Tue, 28 Jun 2011 08:24:59 +1000 Subject: [asset pipeline] Add examples of javascript_include_tag and stylesheet_link_tag --- railties/guides/source/asset_pipeline.textile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile index db13817535..4d052c16f3 100644 --- a/railties/guides/source/asset_pipeline.textile +++ b/railties/guides/source/asset_pipeline.textile @@ -49,7 +49,12 @@ Providing that assets are enabled within our application (+config.assets.enabled Otherwise, Sprockets will look through the available paths until it finds a file that matches the name and then will serve it, first looking in the application's assets directories and then falling back to the various engines of the application. -Sprockets does not add any new methods to require your assets, we still use the familiar +javascript_include_tag+ and +stylesheet_link_tag+. You can use it to include from the normal public directory or the assets directory. +Sprockets does not add any new methods to require your assets, we still use the familiar +javascript_include_tag+ and +stylesheet_link_tag+. + + + <%= stylesheet_link_tag "application" %> + <%= javascript_include_tag "application" %> + h4. Manifest Files and Directives -- cgit v1.2.3