Class: Bureaucrat::Validators::MinValueValidator
Instance Method Summary
collapse
#call, #clean, #initialize
Instance Method Details
#code ⇒ Object
118
119
120
|
# File 'lib/bureaucrat/validators.rb', line 118
def code
:min_value
end
|
#compare(a, b) ⇒ Object
122
123
124
|
# File 'lib/bureaucrat/validators.rb', line 122
def compare(a, b)
a < b
end
|
#message ⇒ Object
114
115
116
|
# File 'lib/bureaucrat/validators.rb', line 114
def message
'Ensure this value is greater than or equal to %(limit_value)s.'
end
|