1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/lib/csv.gemspec
hsbt 283bb70fe0 Bump version to csv-1.0.0 as default gems.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61200 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-12-13 05:24:01 +00:00

21 lines
670 B
Ruby

# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "csv"
spec.version = "1.0.0"
spec.date = "2017-12-13"
spec.authors = ["James Edward Gray II"]
spec.email = [nil]
spec.summary = "CSV Reading and Writing"
spec.description = "the CSV library began its life as FasterCSV."
spec.homepage = "https://github.com/ruby/csv"
spec.license = "BSD-2-Clause"
spec.files = ["lib/csv.rb"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.4.0"
spec.add_development_dependency "bundler", "~> 1.14"
spec.add_development_dependency "rake", "~> 12"
end