Created
May 31, 2011 07:28
-
-
Save coffeeaddict/1000104 to your computer and use it in GitHub Desktop.
Scope for each state in the pluginaweek/state_machine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Thing < ActiveRecord::Base | |
state_machine :initial => :pending do | |
# when published, the thing has to be removed | |
after_transition :on => :done_publishing, :do => :destroy | |
event :publish do | |
transition :pending => :publishing, :unless => :not_ready? | |
end | |
event :done_publishing do | |
transition :publishing => :published | |
end | |
state :pending, :publishing, :published | |
end | |
# now, one scope for each state so we can do Thing.pending, Thing.publishing and Thing.published | |
# | |
state_machine.states.collect(&:name).each do |name| | |
scope name, where(:state => name) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment