-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsv.gemspec
More file actions
20 lines (18 loc) · 811 Bytes
/
tsv.gemspec
File metadata and controls
20 lines (18 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tsv/version'
Gem::Specification.new do |spec|
spec.name = "tsv"
spec.version = TSV::VERSION
spec.authors = ["Dmytro Soltys", "Alexander Rozumiy"]
spec.email = ["soap@slotos.net", "brain-geek@yandex.ua"]
spec.description = %q{Streamed TSV parser}
spec.summary = %q{Provides a simple parser for standard compliant and not so (missing header line) TSV files}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
end