My fields are: tax rate and tax amount in which I want to validate positive values.
tax rate
tax amount
I wrote this validation:
:format => { :w
Doesn't this work?
validates :your_field, :numericality => { :greater_than_or_equal_to => 0 }
(guess for taxes following rule will be more correct:)
validates :your_field, :numericality => { :greater_than_or_equal_to => 0, :less_than_or_equal_to => 100 }