Module: Axiom::Types::ValueComparable

Included in:
Date, DateTime, Time
Defined in:
lib/axiom/types/value_comparable.rb

Overview

Add a minimum and maximum value constraint to a type

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.extended(descendant) ⇒ undefined

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Hook called when module is extended

Add #minimum and #maximum DSL methods to descendant.

Parameters:

Returns:

  • (undefined)


18
19
20
21
# File 'lib/axiom/types/value_comparable.rb', line 18

def self.extended(descendant)
  super
  descendant.accept_options :minimum, :maximum
end

Instance Method Details

#finalizeAxiom::Types::ValueComparable

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Finalize by setting up a value range constraint



28
29
30
31
32
# File 'lib/axiom/types/value_comparable.rb', line 28

def finalize
  return self if frozen?
  has_value_within_range
  super
end