Sha256: 14eafe4fbeb052bb10f5a82578b07d3e798319ea254494e16ea29fe08eff66c6

Contents?: true

Size: 1.33 KB

Versions: 7

Compression:

Stored size: 1.33 KB

Contents

# Copyright (C) 2013  Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

require "csv"

module ChupaText
  module Decomposers
    class CSV < Decomposer
      registry.register("csv", self)

      def target?(data)
        data.extension == "csv" or
          data.mime_type == "text/csv"
      end

      def decompose(data)
        text = ""
        data.open do |input|
          csv = ::CSV.new(input)
          csv.each do |row|
            text << row.join(" ")
            text << "\n"
          end
        end
        text_data = TextData.new(text)
        text_data.uri = data.uri
        yield(text_data)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
chupa-text-1.0.6 lib/chupa-text/decomposers/csv.rb
chupa-text-1.0.5 lib/chupa-text/decomposers/csv.rb
chupa-text-1.0.4 lib/chupa-text/decomposers/csv.rb
chupa-text-1.0.3 lib/chupa-text/decomposers/csv.rb
chupa-text-1.0.2 lib/chupa-text/decomposers/csv.rb
chupa-text-1.0.1 lib/chupa-text/decomposers/csv.rb
chupa-text-1.0.0 lib/chupa-text/decomposers/csv.rb