lib/has_messages.rb in has_messages-0.1.2 vs lib/has_messages.rb in has_messages-0.1.3

- old
+ new

@@ -55,15 +55,17 @@ include PluginAWeek::HasMessages::InstanceMethods end 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 "unsent" 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 "queued" or "sent" states. def sent_messages messages.with_states(%w(queued sent)) end end end