Skip to content

Instantly share code, notes, and snippets.

@radar
Forked from stith/aasm_test.rb
Created March 4, 2010 10:07
Show Gist options
  • Select an option

  • Save radar/321606 to your computer and use it in GitHub Desktop.

Select an option

Save radar/321606 to your computer and use it in GitHub Desktop.
aasm_event :finish do
transitions :to => :sold, :from => [:active], :guard => Proc.new {|a| a.reserve < a.price}
transitions :to => :unsold, :from => [:active]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment