Sha256: 264125cdd6dbbc81bed787fa01c4f8e569d5897badc8f2abe9c273ac32542f78
Contents?: true
Size: 432 Bytes
Versions: 77
Compression:
Stored size: 432 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 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
77 entries across 77 versions & 1 rubygems