<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>.gitignore</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/crud_scaffold_generator.rb</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/controller.rb</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/form.html.erb</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/form_scaffolding.html.erb</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/functional_test.rb</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/helper.rb</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/layout.html.erb</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/style.css</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/view_edit.html.erb</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/view_list.html.erb</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/view_new.html.erb</filename>
    </added>
    <added>
      <filename>generators/crud_scaffold/templates/view_show.html.erb</filename>
    </added>
    <added>
      <filename>init.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -0,0 +1,33 @@
+CRUD Scaffold
+==============
+
+Description:
+    The CRUD scaffold generator creates the model, controller and views to 
+    to interact with a database table.  It is similar to the scaffold generator 
+    (&quot;script/generate scaffold ...&quot;) that was included with Rails versions prior 
+    to 2.1.
+
+    Unlike the original scaffold generator, the CRUD Scaffold generated views 
+    are not dynamic. Instead they use the database schema information at the 
+    time they are generated to create views which reference fields in the 
+    database table. Fields added to the table after the scaffold has been 
+    generated WILL NOT appear in the views--the fields must be added by hand. 
+    Therefore it is advisable to create/migrate your table schema before 
+    generating the scaffold.
+
+    The CRUD Scaffold generator takes a model name, an optional controller name, 
+    and a list of views as arguments.  Scaffolded actions and views are created
+    automatically.  Any views left over generate empty stubs.
+
+    The scaffolded actions and views are:
+        index, list, show, new, create, edit, update, destroy
+
+    If a controller name is not given, the plural form of the model name
+    will be used.  The model and controller names may be given in CamelCase
+    or under_score and should not be suffixed with 'Model' or 'Controller'.
+
+Example:
+    ruby script/generate crud_scaffold Account Bank debit credit
+
+    This will generate an Account model and BankController with a full test
+    suite and a basic user interface.</diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>21c9768a36d37406d3a87d22a6dbdcb9f393c746</id>
    </parent>
  </parents>
  <author>
    <name>Kevin Skoglund</name>
    <email>kevin@pixelandpress.com</email>
  </author>
  <url>http://github.com/kevinskoglund/crud-scaffold-generator/commit/b21fd43bd6c105f5a549c20088499e724b40def5</url>
  <id>b21fd43bd6c105f5a549c20088499e724b40def5</id>
  <committed-date>2008-06-26T14:03:11-07:00</committed-date>
  <authored-date>2008-06-26T14:03:11-07:00</authored-date>
  <message>Initial import</message>
  <tree>c5fe5783d5f644ef268e67443400b6589ef67f78</tree>
  <committer>
    <name>Kevin Skoglund</name>
    <email>kevin@pixelandpress.com</email>
  </committer>
</commit>
