Sha256: 0a724e94830e894125fc5d4efad7a35472387221e67a9c0263322e3a24e7aff5
Contents?: true
Size: 314 Bytes
Versions: 9
Compression:
Stored size: 314 Bytes
Contents
module Path def tsv(*args, **kwargs, &block) found = produce_and_find('tsv') TSV.open(found, *args, **kwargs, &block) end def index(*args, **kwargs, &block) found = self.find found = self.set_extension('tsv').find unless found.exists? TSV.index(found, *args, **kwargs, &block) end end
Version data entries
9 entries across 9 versions & 1 rubygems