Class: CSV::TSV
- Inherits:
-
CSV
- Object
- CSV
- CSV::TSV
- Defined in:
- lib/csv.rb
Instance Method Summary collapse
-
#initialize(data, **options) ⇒ TSV
constructor
A new instance of TSV.
Constructor Details
#initialize(data, **options) ⇒ TSV
Returns a new instance of TSV.
2131 2132 2133 |
# File 'lib/csv.rb', line 2131 def initialize(data, **) super(data, **({col_sep: "\t"}.merge())) end |