Class: Sekisyo::Validators::AnyValidator
- Inherits:
-
Object
- Object
- Sekisyo::Validators::AnyValidator
- Defined in:
- lib/sekisyo/validators/any_validator.rb
Overview
Sekisyo Validators AnyValidator is a validator that can come in any value.
Instance Attribute Summary collapse
-
#key ⇒ Object
readonly
Returns the value of attribute key.
Instance Method Summary collapse
-
#initialize(key, options = {}) ⇒ AnyValidator
constructor
A new instance of AnyValidator.
- #valid?(value) ⇒ Boolean
Constructor Details
#initialize(key, options = {}) ⇒ AnyValidator
Returns a new instance of AnyValidator.
9 10 11 12 |
# File 'lib/sekisyo/validators/any_validator.rb', line 9 def initialize(key, = {}) @key = key @options = end |
Instance Attribute Details
#key ⇒ Object (readonly)
Returns the value of attribute key.
14 15 16 |
# File 'lib/sekisyo/validators/any_validator.rb', line 14 def key @key end |
Instance Method Details
#valid?(value) ⇒ Boolean
16 17 18 19 |
# File 'lib/sekisyo/validators/any_validator.rb', line 16 def valid?(value) presence_validate(value) && bytesize_validate(value) end |