<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -3,6 +3,7 @@ helperful.gemspec
 init.rb
 install.rb
 lib/helperful/affiliations_helper.rb
+lib/helperful/asset_tag_helper.rb
 lib/helperful/content_helper.rb
 lib/helperful/deprecations.rb
 lib/helperful/javascript_helper.rb
@@ -10,11 +11,13 @@ lib/helperful/title_helper.rb
 lib/helperful/version.rb
 lib/helperful.rb
 LICENSE.rdoc
+Manifest
 rails/init.rb
 Rakefile
 README.rdoc
 tasks/helperful_tasks.rake
 test/affiliations_helper_test.rb
+test/asset_tag_helper_test.rb
 test/content_helper_test.rb
 test/fixtures/content/has_content.html.erb
 test/fixtures/content/has_content_is_called_alone.html.erb
@@ -27,4 +30,3 @@ test/javascript_helper_test.rb
 test/test_helper.rb
 test/title_helper_test.rb
 uninstall.rb
-Manifest</diff>
      <filename>Manifest</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 Helperful aims to be a collection of useful and reusable Rails helpers.
 
 
-== Rails Installation
+== Plugin Installation
 
 === As a Gem
 
@@ -14,9 +14,6 @@ This is the preferred way to install Helperful and the best way if you want inst
 You can specify the GEM dependency in your application environment.rb file:
 
   Rails::Initializer.run do |config|
-    
-    # other configurations
-    
     config.gem &quot;weppos-helperful&quot;, :lib =&gt; &quot;helperful&quot;, :source =&gt; &quot;http://gems.github.com&quot;
   end
 </diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -1,14 +1,13 @@
+$:.unshift(File.dirname(__FILE__) + &quot;/lib&quot;)
+
 require 'rubygems'
 require 'rake'
 require 'echoe'
-
-$:.unshift(File.dirname(__FILE__) + &quot;/lib&quot;)
 require 'helperful'
 
 
 PKG_NAME    = ENV['PKG_NAME']    || Helperful::GEM
 PKG_VERSION = ENV['PKG_VERSION'] || Helperful::VERSION
-PKG_SUMMARY = &quot;A collection of useful Rails helpers.&quot;
 PKG_FILES   = FileList.new(&quot;{lib,rails,tasks,test}/**/*&quot;) do |files|
   files.include %w(*.{rdoc,rb})
   files.include %w(Rakefile)
@@ -23,7 +22,7 @@ end
 Echoe.new(PKG_NAME, PKG_VERSION) do |p|
   p.author        = &quot;Simone Carletti&quot;
   p.email         = &quot;weppos@weppos.net&quot;
-  p.summary       = PKG_SUMMARY
+  p.summary       = &quot;A collection of useful Rails helpers.&quot;
   p.description   = &lt;&lt;-EOD
     Helperful aims to be a collection of useful and reusable Rails helpers.
   EOD</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -40,12 +40,36 @@ module Helperful
 
     # Converts given +files+ in javascript include statements
     # and appends them in the head section of the page.
+    # 
+    # ==== Examples
+    # 
+    #   # in your index.html.erb view
+    #   &lt;% javascript :foo, :bar, :cache =&gt; &quot;foobar&quot; %&gt;
+    # 
+    #   # this is equivalent to
+    #   &lt;% content_for :head, javascript_include_tag(:foo, :bar, :cache =&gt; &quot;foobar&quot;) %&gt;
+    # 
+    #   # in your application
+    #   &lt;% yield :head %&gt;
+    # 
     def javascript(*files)
       content_for(:head, javascript_include_tag(*files))
     end
 
     # Converts given +files+ in stylesheet link statements
     # and appends them in the head section of the page.
+    # 
+    # ==== Examples
+    # 
+    #   # in your index.html.erb view
+    #   &lt;% stylesheet :foo, :bar, :cache =&gt; &quot;foobar&quot; %&gt;
+    # 
+    #   # this is equivalent to
+    #   &lt;% content_for :head, stylesheet_link_tag(:foo, :bar, :cache =&gt; &quot;foobar&quot;) %&gt;
+    # 
+    #   # in your application
+    #   &lt;% yield :head %&gt;
+    # 
     def stylesheet(*files)
       content_for(:head, stylesheet_link_tag(*files))
     end</diff>
      <filename>lib/helperful/asset_tag_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>98ef4843bd2be586172a4e7a5281e7e7bb268f48</id>
    </parent>
  </parents>
  <author>
    <name>Simone Carletti</name>
    <email>weppos@weppos.net</email>
  </author>
  <url>http://github.com/weppos/helperful/commit/2fc8ddd467501788b38e912a821000d94beeecc7</url>
  <id>2fc8ddd467501788b38e912a821000d94beeecc7</id>
  <committed-date>2009-06-30T12:48:19-07:00</committed-date>
  <authored-date>2009-06-30T12:37:57-07:00</authored-date>
  <message>Merge branch 'asset_tag'</message>
  <tree>c9955be9890a486c632d30db9777a982ec2962f9</tree>
  <committer>
    <name>Simone Carletti</name>
    <email>weppos@weppos.net</email>
  </committer>
</commit>
