Sha256: 81378a1daadddb4cd46018192160cab76c87f1e599c79a8d06e54f2613a72727

Contents?: true

Size: 1.07 KB

Versions: 5

Compression:

Stored size: 1.07 KB

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/smarter_csv/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Tilo Sloboda\n"]
  gem.email         = ["tilo.sloboda@gmail.com\n"]
  gem.description   = %q{Ruby Gem for smarter importing of CSV Files as Array(s) of Hashes, with optional features for processing large files in parallel, embedded comments, unusual field- and record-separators, flexible mapping of CSV-headers to Hash-keys}
  gem.summary       = %q{Ruby Gem for smarter importing of CSV Files (and CSV-like files), with lots of optional features, e.g. chunked processing for huge CSV files}
  gem.homepage      = "https://github.com/tilo/smarter_csv"

  gem.files         = `git ls-files`.split($\)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.name          = "smarter_csv"
  gem.require_paths = ["lib"]
  gem.requirements  = ['csv'] # for CSV.parse() only needed in case we have quoted fields
  gem.version       = SmarterCSV::VERSION
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
smarter_csv-1.0.10 smarter_csv.gemspec
smarter_csv-1.0.9 smarter_csv.gemspec
smarter_csv-1.0.8 smarter_csv.gemspec
smarter_csv-1.0.7 smarter_csv.gemspec
smarter_csv-1.0.6 smarter_csv.gemspec