Profile
Achievement
stayce's Recent Snippets
- All /
« Prev 1 Next »
If you accidentally exit while doing an interactive rebase, you can clean it with this command.
0
765
posted 14 years ago by stayce
validate :price_must_be_at_least_a_cent
protected def price_must_be_at_least_a_cent
errors.add(:price, 'should be at least 0.01') if price.nil? || price < 0.01
end
0
680
posted 14 years ago by stayce