Sha256: dc7828ad13d44e2dfb3a99164c3d7a5e0d09fa8cf68bdb690afd0ed890936774
Contents?: true
Size: 184 Bytes
Versions: 1
Compression:
Stored size: 184 Bytes
Contents
require 'csv' module GoodData::Extract class CsvFile def initialize(file) @file = file end def read(&block) CSV.open @file, 'r', &block end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gooddata-0.2.0 | lib/gooddata/extract.rb |