<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -49,11 +49,11 @@ A Sponsor will have a company name, contact name and email address.  A Sponsor c
 
 h3. Gift
 
-A Gift belongs to a Sponsor. A Gift belongs to a Member.  A Gift will know if it's part of a raffle.  A Gift may have constraints or stipulations that must be met before a winner can take possession. Admins manage Gifts.
+A Gift belongs to a Sponsor. A Gift belongs to a Member.  A Gift will know if it's part of a raffle.  A Gift may have constraints or stipulations that must be met before a winner can take possession. Admins manage Gifts. A Gift will have a description.
 
 h3. Raffle
 
-The selection of the Gift to give away and the random selection of eligible members; notifications are also generated. Admins manage Raffles.
+The selection of the Gift to give away and the random selection of eligible members; notifications are also generated. Admins manage Raffles.  A Raffle can have one or more Sponsors, and by proxy, one or more Gifts.  A Raffle will have a raffle date.  A Raffle will have a description.
 
 
 
@@ -68,6 +68,8 @@ Can a member sign-up but not want to be in the current raffle?
 What about SMS notification?
 
 Need to think more about selecting eligible members and dates and raffles.
+
+[RAILS] Need to override model_generator.rb to NOT use fixutures if factory_girl is available.
 &lt;/pre&gt;
 
 </diff>
      <filename>README.textile</filename>
    </modified>
    <modified>
      <diff>@@ -1,9 +1,9 @@
 Factory.sequence :email do |n|
-  &quot;user#{n}@example.com&quot;
+  &quot;name#{n}@example.com&quot;
 end
 
 Factory.sequence :name do |n|
-  &quot;member#{n}&quot;
+  &quot;name#{n}&quot;
 end
 
 Factory.define :recent_winner, :class =&gt; 'user' do |user|
@@ -21,3 +21,22 @@ Factory.define :previous_winner, :class =&gt; 'user' do |user|
   user.password_confirmation { &quot;password&quot; }
   user.last_won_on           { 1.month.ago - 1.day }
 end
+
+Factory.define :sponsor, :class =&gt; 'sponsor' do |sponsor|
+  sponsor.email              { Factory.next :email }
+  sponsor.name               { Factory.next :name }
+end
+
+Factory.define :gift, :class =&gt; 'gift' do |gift|
+  gift.description           { &quot;description&quot; }
+end
+
+Factory.define :stipulated_gift, :class =&gt; 'gift' do |gift|
+  gift.description           { &quot;description&quot; }
+  gift.stipulation           { &quot;stipulation&quot; }
+end
+
+Factory.define :raffle, :class =&gt; 'raffle' do |raffle|
+  raffle.raffle_date         { Date.today }
+  raffle.description         { &quot;description&quot; }
+end
\ No newline at end of file</diff>
      <filename>test/factories.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>3a7e1cf8ffd8ab87604aaa1f5d2f87d737d9057e</id>
    </parent>
  </parents>
  <author>
    <name>Mel Riffe</name>
    <email>mriffe@gmail.com</email>
  </author>
  <url>http://github.com/melriffe/pickme/commit/8e179f2344f6b7d0cf4360971d91af238a8f74fd</url>
  <id>8e179f2344f6b7d0cf4360971d91af238a8f74fd</id>
  <committed-date>2009-02-21T14:48:45-08:00</committed-date>
  <authored-date>2009-02-21T14:48:45-08:00</authored-date>
  <message>added model stubs; added railroad task</message>
  <tree>2f81b19f2a55204ee61db8871f483239a6cb2622</tree>
  <committer>
    <name>Mel Riffe</name>
    <email>mriffe@gmail.com</email>
  </committer>
</commit>
