Sha256: 028a486246aac8a49bc0a93604a46b08c037bff9ee0e7d59d2e3db64f9603171
Contents?: true
Size: 432 Bytes
Versions: 29
Compression:
Stored size: 432 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. require 'csv' module GoodData module Extract class CsvFile def initialize(file) @file = file end def read(&block) CSV.open @file, 'r', &block end end end end
Version data entries
29 entries across 29 versions & 2 rubygems