Class: Smithy::Format::CSV

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

Instance Method Summary collapse

Instance Method Details

#afterObject



101
102
# File 'lib/smithy/format.rb', line 101

def after
end

#beforeObject



94
95
# File 'lib/smithy/format.rb', line 94

def before
end

#format(software, root) ⇒ Object



96
97
98
99
100
# File 'lib/smithy/format.rb', line 96

def format(software, root)
  software.each do |s|
    puts Smithy::Format.software_row(s).join(',')
  end
end