Class: BlankSlate

Inherits:
Object
  • Object
show all
Defined in:
lib/easy_type/blank_slate.rb

Constant Summary collapse

TYPES =
[:main, :before, :after]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBlankSlate

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

#entriesObject

Returns the value of attribute entries.



21
22
23
# File 'lib/easy_type/blank_slate.rb', line 21

def entries
  @entries
end

#resultsObject

Returns the value of attribute results.



21
22
23
# File 'lib/easy_type/blank_slate.rb', line 21

def results
  @results
end

#typeObject

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

#eigenclassObject



41
42
43
44
45
# File 'lib/easy_type/blank_slate.rb', line 41

def eigenclass
  class << self
    self
  end
end

#executeObject



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