<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -70,14 +70,16 @@ class Message &lt; ActiveRecord::Base
   end
   alias_method :bcc=, :bcc
   
-  # Forwards this message
+  # Forwards this message, including the original subject and body in the new
+  # message
   def forward
     message = self.class.new(:subject =&gt; subject, :body =&gt; body)
     message.sender = sender
     message
   end
   
-  # Replies to this message
+  # Replies to this message, including the original subject and body in the new
+  # message.  Only the original direct receivers are added to the reply.
   def reply
     message = self.class.new(:subject =&gt; subject, :body =&gt; body)
     message.sender = sender
@@ -85,7 +87,9 @@ class Message &lt; ActiveRecord::Base
     message
   end
   
-  # Replies to all recipients on this message
+  # Replies to all recipients on this message, including the original subject
+  # and body in the new message.  All receivers (direct, cc, and bcc) are added
+  # to the reply.
   def reply_to_all
     message = reply
     message.cc(cc)</diff>
      <filename>app/models/message.rb</filename>
    </modified>
    <modified>
      <diff>@@ -55,14 +55,16 @@ class MessageRecipient &lt; ActiveRecord::Base
     end
   end
   
-  # Forwards the message
+  # Forwards this message, including the original subject and body in the new
+  # message
   def forward
     message = self.message.class.new(:subject =&gt; subject, :body =&gt; body)
     message.sender = receiver
     message
   end
   
-  # Replies to the message
+  # Replies to this message, including the original subject and body in the new
+  # message.  Only the original direct receivers are added to the reply.
   def reply
     message = self.message.class.new(:subject =&gt; subject, :body =&gt; body)
     message.sender = receiver
@@ -70,7 +72,9 @@ class MessageRecipient &lt; ActiveRecord::Base
     message
   end
   
-  # Replies to all recipients on the message, including the original sender
+  # Replies to all recipients on this message, including the original subject
+  # and body in the new message.  All receivers (sender, direct, cc, and bcc) are
+  # added to the reply.
   def reply_to_all
     message = reply
     message.to(to - [receiver] + [sender])</diff>
      <filename>app/models/message_recipient.rb</filename>
    </modified>
    <modified>
      <diff>@@ -57,12 +57,14 @@ module PluginAWeek #:nodoc:
     end
     
     module InstanceMethods
-      # Composed messages that have not yet been sent
+      # Composed messages that have not yet been sent.  These consists of all
+      # messages that are currently in the &quot;unsent&quot; state.
       def unsent_messages
         messages.with_state('unsent')
       end
       
-      # Composed messages that have already been sent
+      # Composed messages that have already been sent.  These consists of all
+      # messages that are currently in the &quot;queued&quot; or &quot;sent&quot; states.
       def sent_messages
         messages.with_states(%w(queued sent))
       end</diff>
      <filename>lib/has_messages.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>8850e9cbca6fdeacd91b09e6e72b263e3c2b0582</id>
    </parent>
  </parents>
  <author>
    <name>Aaron Pfeifer</name>
    <email>aaron.pfeifer@gmail.com</email>
  </author>
  <url>http://github.com/pluginaweek/has_messages/commit/c8870feb561fe6ff808a8674aa4ed6e6a7eb98d3</url>
  <id>c8870feb561fe6ff808a8674aa4ed6e6a7eb98d3</id>
  <committed-date>2008-07-04T20:43:53-07:00</committed-date>
  <authored-date>2008-07-04T20:43:53-07:00</authored-date>
  <message>Add more documentation</message>
  <tree>53559e532e53bc2e2df8926ea71fd97ff690a52c</tree>
  <committer>
    <name>Aaron Pfeifer</name>
    <email>aaron.pfeifer@gmail.com</email>
  </committer>
</commit>
