class Definition::Types::Or
Attributes
definitions[RW]
Public Class Methods
new(name, *args)
click to toggle source
Calls superclass method
Definition::Types::Base::new
# File lib/definition/types/or.rb, line 17 def initialize(name, *args) self.definitions = *args super(name) end
Public Instance Methods
conform(value)
click to toggle source
# File lib/definition/types/or.rb, line 22 def conform(value) Conformer.new(self).conform(value) end