Class: RSchema::PredicateSchema

Inherits:
Struct
  • Object
show all
Defined in:
lib/rschema.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#blockObject

Returns the value of attribute block

Returns:

  • (Object)

    the current value of block



172
173
174
# File 'lib/rschema.rb', line 172

def block
  @block
end

#nameObject

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



172
173
174
# File 'lib/rschema.rb', line 172

def name
  @name
end

Instance Method Details

#schema_walk(value, mapper) ⇒ Object



173
174
175
176
177
178
179
# File 'lib/rschema.rb', line 173

def schema_walk(value, mapper)
  if block.call(value)
    value
  else
    RSchema::ErrorDetails.new('fails predicate' + (name ? ": #{name}" : ''))
  end
end