blob: 2862c1fbc24168bf8ab0b65f714e06bd16637c7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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
|