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, #expected_type, find, inherited, #initialize, #merge_with, #param_name, #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



309
310
311
312
313
# File 'lib/apipie/validator.rb', line 309

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

.validate(value) ⇒ Object



319
320
321
# File 'lib/apipie/validator.rb', line 319

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

Instance Method Details

#descriptionObject



315
316
317
# File 'lib/apipie/validator.rb', line 315

def description
  "Must be a number."
end

#validate(value) ⇒ Object



305
306
307
# File 'lib/apipie/validator.rb', line 305

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