Class: TM::Format::CSV

Inherits:
Object
  • Object
show all
Includes:
TM::Format
Defined in:
lib/tm/format/csv.rb

Constant Summary

Constants included from TM::Format

COMMENT_KEYS, PROJECT_KEYS, TICKET_KEYS

Instance Method Summary collapse

Methods included from TM::Format

#after, #before, #normalize_entity

Instance Method Details

#format(entity) ⇒ Object



6
7
8
# File 'lib/tm/format/csv.rb', line 6

def format(entity)
  puts "#{normalize_entity(entity).values.join(", ")}"
end