Class: Apipie::Validator::NumberValidator

Inherits:
BaseValidator show all
Defined in:
lib/apipie/validator.rb

Instance Attribute Summary

Attributes inherited from BaseValidator

#param_description

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseValidator

#==, #error, find, #format_description_value, inherited, #initialize, #inspect, #inspected_fields, #merge_with, #param_name, #params_ordered, #to_json, #to_s, #valid?

Constructor Details

This class inherits a constructor from Apipie::Validator::BaseValidator

Class Method Details

.build(param_description, argument, options, block) ⇒ Object



439
440
441
442
443
# File 'lib/apipie/validator.rb', line 439

def self.build(param_description, argument, options, block)
  if argument == :number
    self.new(param_description)
  end
end

.validate(value) ⇒ Object



453
454
455
# File 'lib/apipie/validator.rb', line 453

def self.validate(value)
  value.to_s =~ /\A(0|[1-9]\d*)\Z$/
end

Instance Method Details

#descriptionObject



445
446
447
# File 'lib/apipie/validator.rb', line 445

def description
  "Must be a number."
end

#expected_typeObject



449
450
451
# File 'lib/apipie/validator.rb', line 449

def expected_type
  'numeric'
end

#validate(value) ⇒ Object



435
436
437
# File 'lib/apipie/validator.rb', line 435

def validate(value)
  self.class.validate(value)
end