Guest User

Untitled

a guest
May 20th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. aasm_event :finish do
  2. transitions :to => :sold, :from => [:active], :guard => Proc.new {|a| a.reserve < a.price}
  3. transitions :to => :unsold, :from => [:active]
  4. end
Add Comment
Please, Sign In to add comment