Created
March 4, 2012 22:00
-
-
Save vsavkin/1975012 to your computer and use it in GitHub Desktop.
Example2
This file contains hidden or 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
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