Skip to content

Instantly share code, notes, and snippets.

@vsavkin
Created March 4, 2012 22:00
Show Gist options
  • Save vsavkin/1975012 to your computer and use it in GitHub Desktop.
Save vsavkin/1975012 to your computer and use it in GitHub Desktop.
Example2
def sell_book
@book = Book.find(params[:id])
if book.sold?
book.errors.add :base, "The book is already sold"
else
book.sell
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment