-
Notifications
You must be signed in to change notification settings - Fork 0
/
nesquikcsv.gemspec
29 lines (24 loc) · 994 Bytes
/
nesquikcsv.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/nesquikcsv/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Juan Martty"]
gem.email = ["[email protected]"]
gem.description = %q{Fastest-CSV fork with encoding support}
gem.summary = %q{Fastest-CSV fork with encoding support}
gem.homepage = "https://github.com/jmartty/nesquikcsv"
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 = "nesquikcsv"
gem.require_paths = ["lib"]
gem.version = NesquikCSV::VERSION
if RUBY_PLATFORM =~ /java/
gem.platform = "java"
gem.files << "lib/csv_parser.jar"
else
gem.extensions = ['ext/csv_parser/extconf.rb']
end
gem.add_development_dependency "test-unit"
gem.add_development_dependency "rake-compiler"
gem.license = 'MIT'
end