Class: Definition::Types::Or
- Includes:
- Dsl
- Defined in:
- lib/definition/types/or.rb
Defined Under Namespace
Modules: Dsl Classes: Conformer
Instance Attribute Summary collapse
-
#definitions ⇒ Object
Returns the value of attribute definitions.
Attributes inherited from Base
Instance Method Summary collapse
- #conform(value) ⇒ Object
-
#initialize(name, *args) ⇒ Or
constructor
A new instance of Or.
Methods included from Dsl
Methods inherited from Base
Constructor Details
#initialize(name, *args) ⇒ Or
Returns a new instance of Or.
17 18 19 20 |
# File 'lib/definition/types/or.rb', line 17 def initialize(name, *args) self.definitions = *args super(name) end |
Instance Attribute Details
#definitions ⇒ Object
Returns the value of attribute definitions.
15 16 17 |
# File 'lib/definition/types/or.rb', line 15 def definitions @definitions end |