Skip to content

Instantly share code, notes, and snippets.

@loe
Created January 27, 2009 06:55
Show Gist options
  • Save loe/53217 to your computer and use it in GitHub Desktop.
Save loe/53217 to your computer and use it in GitHub Desktop.
MyModel < AR::Base
before_validation :multiply_price_by_100
protected
def multiply_price_by_100
self.price = self.price * 100
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment