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-12-23 02:00:35 -05:00
spec . files = [
" LICENSE.txt " ,
" NEWS.md " ,
" README.md " ,
" lib/csv.rb " ,
" lib/csv/core_ext/array.rb " ,
" lib/csv/core_ext/string.rb " ,
2019-04-14 17:01:51 -04:00
" lib/csv/delete_suffix.rb " ,
2018-12-23 02:00:35 -05:00
" lib/csv/fields_converter.rb " ,
" lib/csv/match_p.rb " ,
" lib/csv/parser.rb " ,
" lib/csv/row.rb " ,
" lib/csv/table.rb " ,
" lib/csv/version.rb " ,
" lib/csv/writer.rb " ,
]
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 "
2019-01-25 01:49:59 -05:00
spec . add_development_dependency " benchmark_driver "
2018-12-23 02:00:35 -05:00
spec . add_development_dependency " simplecov "
2018-05-09 00:39:16 -04:00
end