Class: Apipie::Validator::UndefValidator
- Inherits:
-
BaseValidator
- Object
- BaseValidator
- Apipie::Validator::UndefValidator
- Defined in:
- lib/apipie/validator.rb
Overview
special type of validator: we say that it’s not specified
Instance Attribute Summary
Attributes inherited from BaseValidator
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
259 260 261 262 263 |
# File 'lib/apipie/validator.rb', line 259 def self.build(param_description, argument, , block) if argument == :undef self.new(param_description) end end |
Instance Method Details
#description ⇒ Object
265 266 267 |
# File 'lib/apipie/validator.rb', line 265 def description nil end |
#validate(value) ⇒ Object
255 256 257 |
# File 'lib/apipie/validator.rb', line 255 def validate(value) true end |