-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathfastest-csv.gemspec
More file actions
28 lines (23 loc) · 973 Bytes
/
fastest-csv.gemspec
File metadata and controls
28 lines (23 loc) · 973 Bytes
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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/fastest-csv/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Maarten Oelering"]
gem.email = ["maarten@brightcode.nl"]
gem.description = %q{Fastest standard CSV parser for MRI Ruby and JRuby}
gem.summary = %q{Fastest standard CSV parser for MRI Ruby and JRuby}
gem.homepage = "https://github.com/brightcode/fastest-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 = "fastest-csv"
gem.require_paths = ["lib"]
gem.version = FastestCSV::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 "rake-compiler"
gem.license = 'MIT'
end