Class: Lumb::LogStruct

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

Instance Method Summary collapse

Constructor Details

#initialize(items, ws) ⇒ LogStruct

Returns a new instance of LogStruct.



89
90
91
# File 'lib/lumb.rb', line 89

def initialize(items, ws)
  @items, @ws = items, ws
end

Instance Method Details

#to_sObject



93
94
95
# File 'lib/lumb.rb', line 93

def to_s
  "#{@items.join}#{@ws}"
end