Class: Gloo::Core::Baseo
- Inherits:
-
Object
- Object
- Gloo::Core::Baseo
- Defined in:
- lib/gloo/core/baseo.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize ⇒ Baseo
constructor
Set up the object.
-
#type_display ⇒ Object
The object type, suitable for display.
Constructor Details
#initialize ⇒ Baseo
Set up the object.
15 16 17 |
# File 'lib/gloo/core/baseo.rb', line 15 def initialize @name = '' end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
12 13 14 |
# File 'lib/gloo/core/baseo.rb', line 12 def name @name end |
Instance Method Details
#type_display ⇒ Object
The object type, suitable for display.
22 23 24 |
# File 'lib/gloo/core/baseo.rb', line 22 def type_display raise 'this method should be overriden' end |