Module: Plushie::DSL::Buildable::ClassMethods Private
- Defined in:
- lib/plushie/dsl/buildable.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Class methods added by Buildable.
Instance Method Summary collapse
-
#field_keys ⇒ Array<Symbol>
private
Override in implementing module.
-
#field_types ⇒ Hash{Symbol => Module}
private
Override in implementing module.
Instance Method Details
#field_keys ⇒ Array<Symbol>
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.
Override in implementing module.
36 37 38 |
# File 'lib/plushie/dsl/buildable.rb', line 36 def field_keys raise NotImplementedError, "#{self} must define .field_keys" end |
#field_types ⇒ Hash{Symbol => Module}
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.
Override in implementing module.
42 43 44 |
# File 'lib/plushie/dsl/buildable.rb', line 42 def field_types {} end |