class GoodData::Extract::CsvFile
Public Class Methods
new(file)
click to toggle source
# File lib/gooddata/extract.rb, line 12 def initialize(file) @file = file end
Public Instance Methods
read(&block)
click to toggle source
# File lib/gooddata/extract.rb, line 16 def read(&block) CSV.open @file, 'r', &block end