Sha256: 697c859190b55d85ba20471ad964ac6825f5905935e9bf8df43e68e2241cdfc5

Contents?: true

Size: 489 Bytes

Versions: 1

Compression:

Stored size: 489 Bytes

Contents

module GogoCsv
  class ::Array
    def save!(path=nil)
      raise 'should be array of array' unless arys?
      raise 'Should supply file path' unless path ||= $current_path

      CSV.open(File.expand_path(path), "wb") do |csv|
        each { |ary| csv <<  ary }
      end
    end

    def map_col!(from_num, to_num=from_num, &blk)
      each { |row| row[to_num] = blk.(row[from_num]) }
    end

    private

      def arys?
        all? { |item| item.is_a?(Array) }
      end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gogo_csv-0.0.5 lib/gogo_csv/array.rb