Sha256: 8f861e954f3915ad8dae21a5b57d36153ed998698f860bf03a8f57ac72330190

Contents?: true

Size: 1.29 KB

Versions: 4

Compression:

Stored size: 1.29 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "smarter_csv"
  spec.version       = SmarterCSV::VERSION
  spec.authors       = ["Tilo Sloboda"]
  spec.email         = ["tilo.sloboda@gmail.com"]

  spec.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}
  spec.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}
  spec.homepage      = "https://github.com/tilo/smarter_csv"
  spec.license       = 'MIT'

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

  spec.metadata["homepage_uri"] = spec.homepage
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
smarter_csv-1.5.2 smarter_csv.gemspec
smarter_csv-1.5.1 smarter_csv.gemspec
smarter_csv-1.5.0 smarter_csv.gemspec
smarter_csv-1.4.2 smarter_csv.gemspec