Method: Dashes::Table#initialize

Defined in:
lib/dashes.rb

#initializeTable

Returns a new instance of Table.



33
34
35
36
37
38
39
40
# File 'lib/dashes.rb', line 33

def initialize
  @rows = []
  @separators = []
  @aligns = []
  @width = nil
  @max_width = nil
  @spacing = nil
end