<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -23,18 +23,18 @@ class CodexGenerator &lt; RubiGen::Base
 
       # Create stubs
       m.template_copy_each %w[Rakefile]
-      m.template_copy_each &quot;html/all.html&quot;
+      m.template_copy_each %w[html/all.html]
       %w[basics building example including_code including_tex table_of_contents user_defined graphviz].each do |template|
-        m.file_copy_each &quot;content/#{template}.textile&quot;
+        m.file_copy_each [&quot;content/#{template}.textile&quot;]
       end
-      m.template_copy_each &quot;config/metadata.yml&quot;
+      m.template_copy_each %w[config/metadata.yml]
       %w[build_all].each do |bin|
-        m.file_copy_each &quot;bin/#{bin}.rb&quot;
+        m.file_copy_each [&quot;bin/#{bin}.rb&quot;]
       end
       %w[basic_continuation cc_throw_catch closure_continuation closure_continuation_2].each do |code|
-        m.file_copy_each &quot;code/control/#{code}.rb&quot;
+        m.file_copy_each [&quot;code/control/#{code}.rb&quot;]
       end
-      m.file_copy_each &quot;code/graphviz/graph.dot&quot;
+      m.file_copy_each [&quot;code/graphviz/graph.dot&quot;]
       [&quot;CollapseCode.html&quot;, &quot;Cpp.html&quot;, &quot;CrashTest.html&quot;, &quot;CSharp.html&quot;, &quot;CSS.html&quot;,
         &quot;Delphi.html&quot;, &quot;FirstLine.html&quot;, &quot;Index.html&quot;, &quot;Java.html&quot;, &quot;JavaScript.html&quot;,
         &quot;NoControls.html&quot;, &quot;NoGutter.html&quot;, &quot;PHP.html&quot;, &quot;Python.html&quot;, &quot;Ruby.html&quot;,
@@ -48,21 +48,21 @@ class CodexGenerator &lt; RubiGen::Base
         &quot;Styles/SyntaxHighlighter.css&quot;, &quot;Styles/TestPages.css&quot;,
         &quot;Templates/Test.dwt&quot;
       ].each do |syntax|
-        m.file_copy_each &quot;assets/dp.SyntaxHighlighter/#{syntax}&quot;
+        m.file_copy_each [&quot;assets/dp.SyntaxHighlighter/#{syntax}&quot;]
       end
       [&quot;pressie.css&quot;, &quot;print.css&quot;, &quot;ruby.png&quot;].each do |asset|
-        m.file_copy_each &quot;assets/stylesheets/#{asset}&quot;
+        m.file_copy_each [&quot;assets/stylesheets/#{asset}&quot;]
       end
       [&quot;blank.gif&quot;, &quot;bodybg.gif&quot;, &quot;framing.css&quot;, &quot;iepngfix.htc&quot;, &quot;opera.css&quot;, &quot;outline.css&quot;,
         &quot;pretty.css&quot;, &quot;print.css&quot;, &quot;s5-core.css&quot;, &quot;slides.css&quot;, &quot;slides.js&quot;
       ].each do |asset|
-        m.file_copy_each &quot;assets/ui/default/#{asset}&quot;
+        m.file_copy_each [&quot;assets/ui/default/#{asset}&quot;]
       end
-      m.template_copy_each &quot;filters/example_filter.rb&quot;
+      m.template_copy_each [&quot;filters/example_filter.rb&quot;]
       [&quot;change_code_urls.rb&quot;, &quot;upcase_titles.rb&quot;].each do |asset|
-        m.file_copy_each &quot;post_processors/#{asset}&quot;
+        m.file_copy_each [&quot;post_processors/#{asset}&quot;]
       end
-      m.file_copy_each &quot;templates/layout.erb&quot;
+      m.file_copy_each [&quot;templates/layout.erb&quot;]
 
       m.dependency &quot;install_rubigen_scripts&quot;, [destination_root, 'codex'],
         :shebang =&gt; options[:shebang], :collision =&gt; :force</diff>
      <filename>app_generators/codex/codex_generator.rb</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@ h1. Building HTML Slides
 
     @rake html/xxx.html@
     
-* If you've created a @content/table_of_contents.textile@, build the whole presentation with
+* If you&#8217;ve created a @content/table_of_contents.textile@, build the whole presentation with
 
     @rake all@
     
@@ -18,7 +18,7 @@ h1. Running the Presentation
 
 * See the &quot;S5 documentation&quot;:http://meyerweb.com/eric/tools/s5/ for details
 
-* Some hints
+* Some hints&#8212;
 ** arrow keys and space bar work
 ** type the slide number to jump
 ** mouse over the bottom right to bring up a set of controls and a list of all available slides</diff>
      <filename>app_generators/codex/templates/content/building.textile</filename>
    </modified>
    <modified>
      <diff>@@ -71,7 +71,7 @@ module Codex
         task :all =&gt; [ 'tmp', output_dir, all_html, :remove_tmp ]
 
         desc &quot;Remove all generated output and temporary files&quot;
-        task :clean =&gt; &quot;#{name}:remove_tmp&quot; do
+        task :clean =&gt; &quot;remove_tmp&quot; do
           FileUtils.rm_rf output_path
         end
         </diff>
      <filename>lib/codex/rake/codextask.rb</filename>
    </modified>
    <modified>
      <diff>@@ -15,8 +15,9 @@ module Codex
     end
     
     def test_process
-      assert !File.exist?(@output)
+      assert !File.exist?(@output), &quot;#{@output} already exists&quot;
       @pressie.process(@input, @output)
+      puts @output.inspect
       assert File.exist?(@output)
     end
     </diff>
      <filename>test/codex/test_pressie.rb</filename>
    </modified>
    <modified>
      <diff>@@ -22,13 +22,12 @@ class Test::Unit::TestCase
   
 private
   
-  def generate
+  def generate    
     run_generator('codex', [Codex.root], sources)
   end
   
   def sources
-    [RubiGen::PathSource.new(:test, File.join(File.dirname(__FILE__),&quot;..&quot;, 'app_generators'))
-    ]
+    [ RubiGen::PathSource.new(:test, File.join(File.dirname(__FILE__),&quot;..&quot;, 'app_generators')) ]
   end
 
 end</diff>
      <filename>test/test_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4edb66aa24ed7bf2ac358c9fd9814e573492ba22</id>
    </parent>
  </parents>
  <author>
    <name>Dave Thomas</name>
    <email>dave@pragprog.com</email>
  </author>
  <url>http://github.com/pragdave/codex/commit/e7fa7b354d944476f6d97c5dffb5ac67160a9445</url>
  <id>e7fa7b354d944476f6d97c5dffb5ac67160a9445</id>
  <committed-date>2009-11-03T14:06:05-08:00</committed-date>
  <authored-date>2009-11-03T14:06:05-08:00</authored-date>
  <message>Fix namespace issue on rake remove_tmp. Fix problem with rubigen commands that expect an array as the first parameter under Ruby 1.9.</message>
  <tree>4973fb772d483a3eb9ae5bfc5c82c77db7004b63</tree>
  <committer>
    <name>Dave Thomas</name>
    <email>dave@pragprog.com</email>
  </committer>
</commit>
