Class: BlankSlate
- Inherits:
-
Object
- Object
- BlankSlate
- Defined in:
- lib/easy_type/blank_slate.rb
Constant Summary collapse
- TYPES =
[:main, :before, :after]
Instance Attribute Summary collapse
-
#entries ⇒ Object
Returns the value of attribute entries.
-
#results ⇒ Object
Returns the value of attribute results.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
- #eigenclass ⇒ Object
- #execute ⇒ Object
-
#initialize ⇒ BlankSlate
constructor
A new instance of BlankSlate.
Constructor Details
#initialize ⇒ BlankSlate
Returns a new instance of BlankSlate.
24 25 26 27 28 29 30 31 |
# File 'lib/easy_type/blank_slate.rb', line 24 def initialize @entries = {} @results = {} TYPES.each do | type| @results[type] = [] @entries[type] ||= [] end end |
Instance Attribute Details
#entries ⇒ Object
Returns the value of attribute entries.
21 22 23 |
# File 'lib/easy_type/blank_slate.rb', line 21 def entries @entries end |
#results ⇒ Object
Returns the value of attribute results.
21 22 23 |
# File 'lib/easy_type/blank_slate.rb', line 21 def results @results end |
#type ⇒ Object
Returns the value of attribute type.
21 22 23 |
# File 'lib/easy_type/blank_slate.rb', line 21 def type @type end |
Instance Method Details
#eigenclass ⇒ Object
41 42 43 44 45 |
# File 'lib/easy_type/blank_slate.rb', line 41 def eigenclass class << self self end end |
#execute ⇒ Object
33 34 35 36 37 38 39 |
# File 'lib/easy_type/blank_slate.rb', line 33 def execute TYPES.each do | type| entries[type].each do | command_entry| results[type] << command_entry.execute end end end |