Class: Apipie::Validator::NumberValidator
Instance Attribute Summary
#param_description
Class Method Summary
collapse
Instance Method Summary
collapse
#==, #error, find, #format_description_value, #ignore_allow_blank?, inherited, #initialize, #inspect, #inspected_fields, #merge_with, #param_name, #params_ordered, raise_if_missing_params, #to_json, #to_s, #valid?
Class Method Details
.build(param_description, argument, options, block) ⇒ Object
463
464
465
466
467
|
# File 'lib/apipie/validator.rb', line 463
def self.build(param_description, argument, options, block)
if argument == :number
self.new(param_description)
end
end
|
.validate(value) ⇒ Object
477
478
479
|
# File 'lib/apipie/validator.rb', line 477
def self.validate(value)
value.to_s =~ /\A(0|[1-9]\d*)\Z$/
end
|
Instance Method Details
#description ⇒ Object
469
470
471
|
# File 'lib/apipie/validator.rb', line 469
def description
"Must be a number."
end
|
#expected_type ⇒ Object
473
474
475
|
# File 'lib/apipie/validator.rb', line 473
def expected_type
'numeric'
end
|
#validate(value) ⇒ Object
459
460
461
|
# File 'lib/apipie/validator.rb', line 459
def validate(value)
self.class.validate(value)
end
|