<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>doc/created.rid</filename>
    </added>
    <added>
      <filename>doc/files/History_txt.html</filename>
    </added>
    <added>
      <filename>doc/files/License_txt.html</filename>
    </added>
    <added>
      <filename>doc/files/README_txt.html</filename>
    </added>
    <added>
      <filename>doc/files/lib/stage/version_rb.html</filename>
    </added>
    <added>
      <filename>doc/files/lib/stage_rb.html</filename>
    </added>
    <added>
      <filename>doc/files/website/index_txt.html</filename>
    </added>
    <added>
      <filename>doc/fr_class_index.html</filename>
    </added>
    <added>
      <filename>doc/fr_file_index.html</filename>
    </added>
    <added>
      <filename>doc/fr_method_index.html</filename>
    </added>
    <added>
      <filename>doc/index.html</filename>
    </added>
    <added>
      <filename>doc/rdoc-style.css</filename>
    </added>
    <added>
      <filename>rails_generators/stage/USAGE</filename>
    </added>
    <added>
      <filename>rails_generators/stage/stage_generator.rb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/controller.rb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/data_partial.html.erb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/form_partial.html.erb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/helper.rb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/layout.html.erb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/migration.rb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/model.rb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/view_edit.html.erb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/view_index.html.erb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/view_new.html.erb</filename>
    </added>
    <added>
      <filename>rails_generators/stage/templates/view_show.html.erb</filename>
    </added>
    <added>
      <filename>website/merb.html</filename>
    </added>
    <added>
      <filename>website/merb.txt</filename>
    </added>
    <added>
      <filename>website/rails.html</filename>
    </added>
    <added>
      <filename>website/rails.txt</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,6 @@
+== 0.3.0 2008-04-26
+  * Rails support now added. Yeah!
+
 == 0.2.0 2008-04-20
   * Seems to have been an error with the last deploy
 </diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -19,6 +19,19 @@ merb_generators/stage/templates/app/views/%controller_file_name%/edit.html.erb
 merb_generators/stage/templates/app/views/%controller_file_name%/index.html.erb
 merb_generators/stage/templates/app/views/%controller_file_name%/new.html.erb
 merb_generators/stage/templates/app/views/%controller_file_name%/show.html.erb
+rails_generators/stage/USAGE
+rails_generators/stage/stage_generator.rb
+rails_generators/stage/templates/controller.rb
+rails_generators/stage/templates/data_partial.html.erb
+rails_generators/stage/templates/form_partial.html.erb
+rails_generators/stage/templates/helper.rb
+rails_generators/stage/templates/layout.html.erb
+rails_generators/stage/templates/migration.rb
+rails_generators/stage/templates/model.rb
+rails_generators/stage/templates/view_edit.html.erb
+rails_generators/stage/templates/view_index.html.erb
+rails_generators/stage/templates/view_new.html.erb
+rails_generators/stage/templates/view_show.html.erb
 script/console
 script/destroy
 script/generate</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -3,20 +3,20 @@
 
 == DESCRIPTION:
 
-Stage is a code template generator that utilizes helpers as presenters to reduce ruby code used in views. The initial release only works with Merb and DataMapper.  Support for RubyOnRails, ActiveRecord, Sequel and other ORMs will be added as I get the time.  Of course, contributions are welcome if you like the concept.
-
+Stage is a code template generator that utilizes helpers as presenters to reduce ruby code used in views. Of course, contributions are welcome if you like the concept. I would especially like to hear of any code reduction suggestions.
 
 == FEATURES/PROBLEMS:
 
-Currently only supports Merb + DataMapper.
-Need to add a confirm script to the delete link.
+Both: The helper methods could generate more precise form helpers.  Just outputs text fields.
 
-== SYNOPSIS:
+Merb:  Need to add resource to router.rb
 
 
 == REQUIREMENTS:
 
 Merb + DataMapper
+-- or --
+RubyOnRails
 
 == INSTALL:
 </diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 module Stage #:nodoc:
   module VERSION #:nodoc:
     MAJOR = 0
-    MINOR = 2
+    MINOR = 3
     TINY  = 0
 
     STRING = [MAJOR, MINOR, TINY].join('.')</diff>
      <filename>lib/stage/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,8 @@
-require File.dirname(__FILE__) + '/test_helper'
+begin
+  require File.dirname(__FILE__) + '/test_helper'
+rescue LoadError
+  require 'test/unit'
+end
 require 'fileutils'
 
 # Must set before requiring generator libs.
@@ -10,6 +14,11 @@ if defined?(APP_ROOT)
 else
   APP_ROOT = app_root
 end
+if defined?(RAILS_ROOT)
+  RAILS_ROOT.replace(app_root)
+else
+  RAILS_ROOT = app_root
+end
 
 begin
   require 'rubigen'</diff>
      <filename>test/test_generator_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,16 +1,18 @@
 require File.join(File.dirname(__FILE__), &quot;test_generator_helper.rb&quot;)
 
+require 'rails_generator'
+
 class TestStageGenerator &lt; Test::Unit::TestCase
   include RubiGen::GeneratorTestHelper
 
   def setup
     bare_setup
   end
-  
+
   def teardown
     bare_teardown
   end
-  
+
   # Some generator-related assertions:
   #   assert_generated_file(name, &amp;block) # block passed the file contents
   #   assert_directory_exists(name)
@@ -24,20 +26,20 @@ class TestStageGenerator &lt; Test::Unit::TestCase
   #   app_root_files - put this in teardown to show files generated by the test method (e.g. p app_root_files)
   #   bare_setup - place this in setup method to create the APP_ROOT folder for each test
   #   bare_teardown - place this in teardown method to destroy the TMP_ROOT or APP_ROOT folder after each test
-  
+
   def test_generator_without_options
     name = &quot;myapp&quot;
     run_generator('stage', [name], sources)
     assert_generated_file(&quot;some_file&quot;)
   end
-  
+
   private
   def sources
     [RubiGen::PathSource.new(:test, File.join(File.dirname(__FILE__),&quot;..&quot;, generator_path))
     ]
   end
-  
+
   def generator_path
-    &quot;merb_generators&quot;
+    &quot;rails_generators&quot;
   end
 end</diff>
      <filename>test/test_stage_generator.rb</filename>
    </modified>
    <modified>
      <diff>@@ -33,7 +33,7 @@
     &lt;h1&gt;stage&lt;/h1&gt;
     &lt;div id=&quot;version&quot; class=&quot;clickable&quot; onclick='document.location = &quot;http://rubyforge.org/projects/stage&quot;; return false'&gt;
       &lt;p&gt;Get Version&lt;/p&gt;
-      &lt;a href=&quot;http://rubyforge.org/projects/stage&quot; class=&quot;numbers&quot;&gt;0.1.10&lt;/a&gt;
+      &lt;a href=&quot;http://rubyforge.org/projects/stage&quot; class=&quot;numbers&quot;&gt;0.3.0&lt;/a&gt;
     &lt;/div&gt;
     &lt;h1&gt;&amp;#x2192; &amp;#8216;stage&amp;#8217;&lt;/h1&gt;
 
@@ -41,163 +41,13 @@
 	&lt;h2&gt;What&lt;/h2&gt;
 
 
-	&lt;p&gt;Stage is a code template generator that utilizes helpers as presenters to reduce ruby code used in views. The initial release only works with Merb and DataMapper.  Support for RubyOnRails, ActiveRecord, Sequel and other ORMs will be added as I get the time.  Of course, contributions are welcome if you like the concept.&lt;/p&gt;
+	&lt;p&gt;Stage is a code template generator that utilizes helpers as presenters to reduce ruby code used in views.  Of course, contributions are welcome if you like the concept.  I would especially like to hear of any code reduction suggestions.&lt;/p&gt;
 
 
-	&lt;h2&gt;Installing&lt;/h2&gt;
-
-
-	&lt;p&gt;&lt;pre class='syntax'&gt;&lt;span class=&quot;ident&quot;&gt;sudo&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;gem&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;stage&lt;/span&gt;&lt;/pre&gt;&lt;/p&gt;
+	&lt;h2&gt;&lt;a href=&quot;merb.html&quot;&gt;Merb Instructions&lt;/a&gt;&lt;/h2&gt;
 
 
-	&lt;h2&gt;Demonstration of usage&lt;/h2&gt;
-
-
-	&lt;p&gt;&lt;pre class='syntax'&gt;
-&lt;span class=&quot;global&quot;&gt;$ &lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;merb&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;gen&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;stage&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;page&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:string&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;content&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:text&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;exists&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;exists&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;controllers&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;exists&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;helpers&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;exists&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;models&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;exists&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;views&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;create&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;views&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pages&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;create&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;controllers&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pages&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;rb&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;create&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;helpers&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pages_helper&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;rb&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;create&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;models&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;rb&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;create&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;views&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pages&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;_data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;erb&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;create&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;views&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pages&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;_form&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;erb&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;create&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;views&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pages&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;edit&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;erb&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;create&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;views&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pages&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;erb&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;create&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;views&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pages&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;new&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;erb&lt;/span&gt;
-&lt;span class=&quot;ident&quot;&gt;create&lt;/span&gt;  &lt;span class=&quot;ident&quot;&gt;app&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;views&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pages&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;show&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;html&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;erb&lt;/span&gt;
-&lt;/pre&gt;&lt;/p&gt;
-
-
-	&lt;p&gt;The controller generated:
-&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;keyword&quot;&gt;class &lt;/span&gt;&lt;span class=&quot;class&quot;&gt;Pages&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;Application&lt;/span&gt;
-    &lt;span class=&quot;ident&quot;&gt;before&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:find_page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:only&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:show&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:edit&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:update&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:delete&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]&lt;/span&gt;
-
-    &lt;span class=&quot;keyword&quot;&gt;def &lt;/span&gt;&lt;span class=&quot;method&quot;&gt;index&lt;/span&gt;
-      &lt;span class=&quot;attribute&quot;&gt;@pages&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;Page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;all&lt;/span&gt;
-      &lt;span class=&quot;ident&quot;&gt;display&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@pages&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-
-    &lt;span class=&quot;keyword&quot;&gt;def &lt;/span&gt;&lt;span class=&quot;method&quot;&gt;show&lt;/span&gt;
-      &lt;span class=&quot;ident&quot;&gt;display&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-
-    &lt;span class=&quot;keyword&quot;&gt;def &lt;/span&gt;&lt;span class=&quot;method&quot;&gt;new&lt;/span&gt;
-      &lt;span class=&quot;ident&quot;&gt;only_provides&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:html&lt;/span&gt;
-      &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;Page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;new&lt;/span&gt;
-      &lt;span class=&quot;ident&quot;&gt;render&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-
-    &lt;span class=&quot;keyword&quot;&gt;def &lt;/span&gt;&lt;span class=&quot;method&quot;&gt;edit&lt;/span&gt;
-      &lt;span class=&quot;ident&quot;&gt;only_provides&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:html&lt;/span&gt;
-      &lt;span class=&quot;ident&quot;&gt;render&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-
-    &lt;span class=&quot;keyword&quot;&gt;def &lt;/span&gt;&lt;span class=&quot;method&quot;&gt;create&lt;/span&gt;
-      &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;Page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;new&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;params&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;save&lt;/span&gt;
-        &lt;span class=&quot;ident&quot;&gt;redirect&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;else&lt;/span&gt;
-        &lt;span class=&quot;ident&quot;&gt;render&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:new&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-
-    &lt;span class=&quot;keyword&quot;&gt;def &lt;/span&gt;&lt;span class=&quot;method&quot;&gt;update&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;update_attributes&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;params&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
-        &lt;span class=&quot;ident&quot;&gt;redirect&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;else&lt;/span&gt;
-        &lt;span class=&quot;keyword&quot;&gt;raise&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;BadRequest&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-
-    &lt;span class=&quot;keyword&quot;&gt;def &lt;/span&gt;&lt;span class=&quot;method&quot;&gt;delete&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;destroy!&lt;/span&gt;
-        &lt;span class=&quot;ident&quot;&gt;redirect&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;else&lt;/span&gt;
-        &lt;span class=&quot;keyword&quot;&gt;raise&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;BadRequest&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-
-    &lt;span class=&quot;ident&quot;&gt;private&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;def &lt;/span&gt;&lt;span class=&quot;method&quot;&gt;find_page&lt;/span&gt;
-      &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;Page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;first&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;params&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:id&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;raise&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;NotFound&lt;/span&gt; &lt;span class=&quot;keyword&quot;&gt;unless&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-  &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-&lt;/pre&gt;&lt;/p&gt;
-
-
-	&lt;p&gt;The edit page:
-&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;punct&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;h1&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;constant&quot;&gt;Editing&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;regex&quot;&gt;h1&amp;gt;
-
-  &amp;lt;%= partial &amp;quot;form&amp;quot; %&amp;gt;
-
-  &amp;lt;%= link_to 'Show', url(:page, @page) %&amp;gt; |
-  &amp;lt;%= link_to 'Back', url(:pages) %&amp;gt;&lt;span class=&quot;normal&quot;&gt;
-&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/p&gt;
-
-
-	&lt;p&gt;The form partial:
-&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;punct&quot;&gt;&amp;lt;%&lt;/span&gt;
-    &lt;span class=&quot;ident&quot;&gt;submit_label&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Update&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;
-    &lt;span class=&quot;ident&quot;&gt;submit_label&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Create&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;keyword&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;new_record?&lt;/span&gt;
-  &lt;span class=&quot;punct&quot;&gt;-%&amp;gt;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;
-
-  &amp;lt;%= error_messages_for @page %&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;gt;&lt;/span&gt;
-
-  &lt;span class=&quot;punct&quot;&gt;&amp;lt;%&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;form_for&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:action&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;keyword&quot;&gt;do&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;%&amp;gt;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;
-    &amp;lt;%= partial :data %&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;gt;&lt;/span&gt;
-    &lt;span class=&quot;punct&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;lt;%=&lt;/span&gt;&lt;span class=&quot;string&quot;&gt; submit_button submit_label %&amp;gt; &amp;lt;/p&amp;gt;
-  &amp;lt;% end %&amp;gt;&lt;span class=&quot;normal&quot;&gt;
-&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/p&gt;
-
-
-	&lt;p&gt;The data partial (the show view calls this directly):
-&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;punct&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;gt;&lt;/span&gt;
-    &lt;span class=&quot;punct&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;constant&quot;&gt;Title&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&quot;regex&quot;&gt;b&amp;gt;&amp;lt;br &lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;/&amp;gt;&lt;/span&gt;
-    &lt;span class=&quot;punct&quot;&gt;&amp;lt;%=&lt;/span&gt;&lt;span class=&quot;string&quot;&gt; page_title_value %&amp;gt;
-  &amp;lt;/p&amp;gt;
-
-  &amp;lt;p&amp;gt;
-    &amp;lt;b&amp;gt;Content&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;
-    &amp;lt;%&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;page_content_value&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;%&amp;gt;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;
-  &amp;lt;/p&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;gt;&lt;/span&gt;
-&lt;/pre&gt;&lt;/p&gt;
-
-
-	&lt;p&gt;As you can see, there are &amp;lt;model&amp;gt;_&amp;lt;field&amp;gt;_value methods.  These are defined in the pages helper:
-&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;keyword&quot;&gt;module &lt;/span&gt;&lt;span class=&quot;module&quot;&gt;Merb&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;module &lt;/span&gt;&lt;span class=&quot;module&quot;&gt;PagesHelper&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;def &lt;/span&gt;&lt;span class=&quot;method&quot;&gt;page_title_value&lt;/span&gt;
-        &lt;span class=&quot;keyword&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@action_name&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;show&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;
-          &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;title&lt;/span&gt;
-        &lt;span class=&quot;keyword&quot;&gt;else&lt;/span&gt;
-          &lt;span class=&quot;ident&quot;&gt;text_field&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:name&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;page[title]&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:value&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;title&lt;/span&gt;
-        &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-
-      &lt;span class=&quot;keyword&quot;&gt;def &lt;/span&gt;&lt;span class=&quot;method&quot;&gt;page_content_value&lt;/span&gt;
-        &lt;span class=&quot;keyword&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@action_name&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;show&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;
-          &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;content&lt;/span&gt;
-        &lt;span class=&quot;keyword&quot;&gt;else&lt;/span&gt;
-          &lt;span class=&quot;ident&quot;&gt;text_field&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:name&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;page[content]&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:value&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@page&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;content&lt;/span&gt;
-        &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-      &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-    &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-  &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-&lt;/pre&gt;&lt;/p&gt;
-
-
-	&lt;p&gt;I need to get more precise with the form helpers, but for now this will do.&lt;/p&gt;
+	&lt;h2&gt;&lt;a href=&quot;rails.html&quot;&gt;Rails Instructions&lt;/a&gt;&lt;/h2&gt;
 
 
 	&lt;h2&gt;Forum&lt;/h2&gt;
@@ -229,7 +79,7 @@
 
 	&lt;p&gt;Comments and suggestions are welcome via the &lt;a href=&quot;http://groups.google.com/group/stonean_stage?hl=en&quot;&gt;forum&lt;/a&gt;&lt;/p&gt;
     &lt;p class=&quot;coda&quot;&gt;
-      20th April 2008&lt;br&gt;
+      26th April 2008&lt;br&gt;
       Theme extended from &lt;a href=&quot;http://rb2js.rubyforge.org/&quot;&gt;Paul Battley&lt;/a&gt;
     &lt;/p&gt;
 &lt;/div&gt;</diff>
      <filename>website/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -5,153 +5,11 @@ h1. &amp;#x2192; 'stage'
 
 h2. What
 
-Stage is a code template generator that utilizes helpers as presenters to reduce ruby code used in views. The initial release only works with Merb and DataMapper.  Support for RubyOnRails, ActiveRecord, Sequel and other ORMs will be added as I get the time.  Of course, contributions are welcome if you like the concept.
-
-h2. Installing
-
-&lt;pre syntax=&quot;ruby&quot;&gt;sudo gem install stage&lt;/pre&gt;
-
-h2. Demonstration of usage
-
-&lt;pre syntax=&quot;ruby&quot;&gt;
-$ merb-gen stage page title:string content:text
-exists  app
-exists  app/controllers
-exists  app/helpers
-exists  app/models
-exists  app/views
-create  app/views/pages
-create  app/controllers/pages.rb
-create  app/helpers/pages_helper.rb
-create  app/models/page.rb
-create  app/views/pages/_data.html.erb
-create  app/views/pages/_form.html.erb
-create  app/views/pages/edit.html.erb
-create  app/views/pages/index.html.erb
-create  app/views/pages/new.html.erb
-create  app/views/pages/show.html.erb
-&lt;/pre&gt;
-
-The controller generated:
-&lt;pre syntax=&quot;ruby&quot;&gt;
-  class Pages &lt; Application
-    before :find_page, :only =&gt; [:show, :edit, :update, :delete]
-
-    def index
-      @pages = Page.all
-      display @pages
-    end
-
-    def show
-      display @page
-    end
-
-    def new
-      only_provides :html
-      @page = Page.new
-      render
-    end
-
-    def edit
-      only_provides :html
-      render
-    end
-
-    def create
-      @page = Page.new(params[:page])
-      if @page.save
-        redirect url(:page, @page)
-      else
-        render :new
-      end
-    end
-
-    def update
-      if @page.update_attributes(params[:page])
-        redirect url(:page, @page)
-      else
-        raise BadRequest
-      end
-    end
-
-    def delete
-      if @page.destroy!
-        redirect url(:page)
-      else
-        raise BadRequest
-      end
-    end
-
-    private
-    def find_page
-      @page = Page.first(params[:id])
-      raise NotFound unless @page
-    end
-  end
-&lt;/pre&gt;
-
-The edit page:
-&lt;pre syntax=&quot;ruby&quot;&gt;
-  &lt;h1&gt;Editing page&lt;/h1&gt;
-
-  &lt;%= partial &quot;form&quot; %&gt;
-
-  &lt;%= link_to 'Show', url(:page, @page) %&gt; |
-  &lt;%= link_to 'Back', url(:pages) %&gt;
-&lt;/pre&gt;
-
-The form partial:
-&lt;pre syntax=&quot;ruby&quot;&gt;
-  &lt;%
-    submit_label = &quot;Update&quot;
-    submit_label = &quot;Create&quot; if @page.new_record?
-  -%&gt;
-
-  &lt;%= error_messages_for @page %&gt;
-
-  &lt;% form_for(:page, :action =&gt; url(:page,@page)) do %&gt;
-    &lt;%= partial :data %&gt;
-    &lt;p&gt; &lt;%= submit_button submit_label %&gt; &lt;/p&gt;
-  &lt;% end %&gt;
-&lt;/pre&gt;
-
-The data partial (the show view calls this directly):
-&lt;pre syntax=&quot;ruby&quot;&gt;
-  &lt;p&gt;
-    &lt;b&gt;Title&lt;/b&gt;&lt;br /&gt;
-    &lt;%= page_title_value %&gt;
-  &lt;/p&gt;
-
-  &lt;p&gt;
-    &lt;b&gt;Content&lt;/b&gt;&lt;br /&gt;
-    &lt;%= page_content_value %&gt;
-  &lt;/p&gt;
-&lt;/pre&gt;
-
-As you can see, there are &amp;lt;model&amp;gt;_&amp;lt;field&amp;gt;_value methods.  These are defined in the pages helper:
-&lt;pre syntax=&quot;ruby&quot;&gt;
-  module Merb
-    module PagesHelper
-      def page_title_value
-        if @action_name == &quot;show&quot;
-          @page.title
-        else
-          text_field :name =&gt; &quot;page[title]&quot;, :value =&gt; @page.title
-        end
-      end
-
-      def page_content_value
-        if @action_name == &quot;show&quot;
-          @page.content
-        else
-          text_field :name =&gt; &quot;page[content]&quot;, :value =&gt; @page.content
-        end
-      end
-    end
-  end
-&lt;/pre&gt;
-
-I need to get more precise with the form helpers, but for now this will do.
+Stage is a code template generator that utilizes helpers as presenters to reduce ruby code used in views.  Of course, contributions are welcome if you like the concept.  I would especially like to hear of any code reduction suggestions.
+
+h2. &lt;a href=&quot;merb.html&quot;&gt;Merb Instructions&lt;/a&gt;
+
+h2. &lt;a href=&quot;rails.html&quot;&gt;Rails Instructions&lt;/a&gt;
 
 h2. Forum
 </diff>
      <filename>website/index.txt</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>ebe863bed92e3fe0f45a4f99b8275e4cf12c06a9</id>
    </parent>
  </parents>
  <author>
    <name>Andrew Stone</name>
    <email>andy@stonean.com</email>
  </author>
  <url>http://github.com/stonean/stage/commit/68d9038f1ad8a634161481def259b672df503501</url>
  <id>68d9038f1ad8a634161481def259b672df503501</id>
  <committed-date>2008-04-26T16:43:23-07:00</committed-date>
  <authored-date>2008-04-26T16:43:23-07:00</authored-date>
  <message>just added Rails support</message>
  <tree>321334bb0306f15745d103e7c41b1abf1c936cab</tree>
  <committer>
    <name>Andrew Stone</name>
    <email>andy@stonean.com</email>
  </committer>
</commit>
