Sha256: c4102790ca9ed5efbd203c5592819f61f35660288a23cda938eef27a3be967a0
Contents?: true
Size: 200 Bytes
Versions: 1
Compression:
Stored size: 200 Bytes
Contents
# encoding: UTF-8 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.6.0 | lib/gooddata/extract.rb |