Skip to content

Instantly share code, notes, and snippets.

@coffeeaddict
Created May 31, 2011 07:28
Show Gist options
  • Save coffeeaddict/1000104 to your computer and use it in GitHub Desktop.
Save coffeeaddict/1000104 to your computer and use it in GitHub Desktop.
Scope for each state in the pluginaweek/state_machine
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