2018-05-09 00:39:16 -04:00
# frozen_string_literal: true
2018-09-05 09:33:21 -04:00
begin
require_relative " lib/csv/version "
rescue LoadError
2018-10-12 15:58:11 -04:00
# for Ruby core repository
2018-09-05 09:33:21 -04:00
require_relative " version "
end
2018-05-09 07:44:06 -04:00
2018-05-09 00:39:16 -04:00
Gem :: Specification . new do | spec |
spec . name = " csv "
2018-05-09 07:44:06 -04:00
spec . version = CSV :: VERSION
2018-05-09 00:39:16 -04:00
spec . authors = [ " James Edward Gray II " , " Kouhei Sutou " ]
spec . email = [ nil , " kou@cozmixng.org " ]
spec . summary = " CSV Reading and Writing "
spec . description = " The CSV library provides a complete interface to CSV files and data. It offers tools to enable you to read and write to and from Strings or IO objects, as needed. "
spec . homepage = " https://github.com/ruby/csv "
spec . license = " BSD-2-Clause "
2018-09-05 23:02:06 -04:00
spec . files = [ " lib/csv.rb " , " lib/csv/table.rb " , " lib/csv/core_ext/string.rb " , " lib/csv/core_ext/array.rb " , " lib/csv/row.rb " , " lib/csv/version.rb " ]
2018-09-05 09:33:21 -04:00
spec . files += [ " README.md " , " LICENSE.txt " , " news.md " ]
2018-05-09 00:39:16 -04:00
spec . require_paths = [ " lib " ]
spec . required_ruby_version = " >= 2.3.0 "
spec . add_development_dependency " bundler "
spec . add_development_dependency " rake "
spec . add_development_dependency " benchmark-ips "
end