<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,23 +1,27 @@
-
-desc &quot;Creates the cached (public) theme folders&quot;
-task :theme_create_cache do
-  for theme in Dir.glob(&quot;#{RAILS_ROOT}/themes/*&quot;)
-    theme_name = theme.split( File::Separator )[-1]
-    puts &quot;Creating #{RAILS_ROOT}/public/themes/#{theme_name}&quot;
+namespace :themes do
+  namespace :cache do
+    
+    desc &quot;Creates the cached (public) theme folders&quot;
+    task :create do
+      for theme in Dir.glob(&quot;#{RAILS_ROOT}/themes/*&quot;)
+        theme_name = theme.split( File::Separator )[-1]
+        puts &quot;Creating #{RAILS_ROOT}/public/themes/#{theme_name}&quot;
     
-    FileUtils.mkdir_p &quot;#{RAILS_ROOT}/public/themes/#{theme_name}&quot;
+        FileUtils.mkdir_p &quot;#{RAILS_ROOT}/public/themes/#{theme_name}&quot;
         
-    FileUtils.cp_r &quot;#{theme}/images&quot;, &quot;#{RAILS_ROOT}/public/themes/#{theme_name}/images&quot;, :verbose =&gt; true
-    FileUtils.cp_r &quot;#{theme}/stylesheets&quot;, &quot;#{RAILS_ROOT}/public/themes/#{theme_name}/stylesheets&quot;, :verbose =&gt; true
-    FileUtils.cp_r &quot;#{theme}/javascript&quot;, &quot;#{RAILS_ROOT}/public/themes/#{theme_name}/javascript&quot;, :verbose =&gt; true
-  end
-end
+        FileUtils.cp_r &quot;#{theme}/images&quot;, &quot;#{RAILS_ROOT}/public/themes/#{theme_name}/images&quot;, :verbose =&gt; true
+        FileUtils.cp_r &quot;#{theme}/stylesheets&quot;, &quot;#{RAILS_ROOT}/public/themes/#{theme_name}/stylesheets&quot;, :verbose =&gt; true
+        FileUtils.cp_r &quot;#{theme}/javascript&quot;, &quot;#{RAILS_ROOT}/public/themes/#{theme_name}/javascript&quot;, :verbose =&gt; true
+      end
+    end
 
-desc &quot;Removes the cached (public) theme folders&quot;
-task :theme_remove_cache do
-  puts &quot;Removing #{RAILS_ROOT}/public/themes&quot;
-  FileUtils.rm_r &quot;#{RAILS_ROOT}/public/themes&quot;, :force =&gt; true
-end
+    desc &quot;Removes the cached (public) theme folders&quot;
+    task :remove do
+      puts &quot;Removing #{RAILS_ROOT}/public/themes&quot;
+      FileUtils.rm_r &quot;#{RAILS_ROOT}/public/themes&quot;, :force =&gt; true
+    end
 
-desc &quot;Updates the cached (public) theme folders&quot;
-task :theme_update_cache =&gt; [:theme_remove_cache, :theme_create_cache]
\ No newline at end of file
+    desc &quot;Updates the cached (public) theme folders&quot;
+    task :update =&gt; [:theme_remove_cache, :theme_create_cache]
+  end
+end
\ No newline at end of file</diff>
      <filename>tasks/themes.rake</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>57ff56015a65ed012a6c212a8dd3b5b5deefa1dd</id>
    </parent>
  </parents>
  <author>
    <name>James Stewart</name>
    <email>james@saigon.65scruttonstreet</email>
  </author>
  <url>http://github.com/jystewart/theme_support/commit/564f351061e8c63a81149b0a974a3c2eb1ee44f6</url>
  <id>564f351061e8c63a81149b0a974a3c2eb1ee44f6</id>
  <committed-date>2009-02-05T05:01:06-08:00</committed-date>
  <authored-date>2009-02-05T05:01:06-08:00</authored-date>
  <message>Namespace the rake tasks</message>
  <tree>0378f0ffa5378ba72e37c33856c282cdeb3ceff9</tree>
  <committer>
    <name>James Stewart</name>
    <email>james@saigon.65scruttonstreet</email>
  </committer>
</commit>
