Sha256: 1ce5c7600877415a9deb69e637c8c1529fa5781320c2450c18637267fb89d45a

Contents?: true

Size: 1.87 KB

Versions: 10

Compression:

Stored size: 1.87 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.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage
  spec.metadata["changelog_uri"] = "https://github.com/tilo/smarter_csv/blob/main/CHANGELOG.md"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) ||
        f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) || f.match(/\.h\z/)
    end
  end
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})

  spec.executables   = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  spec.require_paths = ["lib"] # add ext here?
  spec.extensions = ["ext/smarter_csv/extconf.rb"]


  spec.add_development_dependency "awesome_print"
  spec.add_development_dependency "codecov"
  spec.add_development_dependency "pry"
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "rubocop"
  spec.add_development_dependency "simplecov"
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
smarter_csv-1.8.5 smarter_csv.gemspec
smarter_csv-1.8.4 smarter_csv.gemspec
smarter_csv-1.8.3 smarter_csv.gemspec
smarter_csv-1.8.2 smarter_csv.gemspec
smarter_csv-1.8.1 smarter_csv.gemspec
smarter_csv-1.8.0 smarter_csv.gemspec
smarter_csv-1.7.4 smarter_csv.gemspec
smarter_csv-1.7.3 smarter_csv.gemspec
smarter_csv-1.7.2 smarter_csv.gemspec
smarter_csv-1.7.1 smarter_csv.gemspec