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

Version Path
scout-gear-10.4.0 lib/scout/tsv/path.rb
scout-gear-10.3.0 lib/scout/tsv/path.rb
scout-gear-10.2.0 lib/scout/tsv/path.rb
scout-gear-10.1.0 lib/scout/tsv/path.rb
scout-gear-10.0.1 lib/scout/tsv/path.rb
scout-gear-9.1.0 lib/scout/tsv/path.rb
scout-gear-9.0.0 lib/scout/tsv/path.rb
scout-gear-8.1.0 lib/scout/tsv/path.rb
scout-gear-8.0.0 lib/scout/tsv/path.rb