-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuncsv.gemspec
More file actions
31 lines (24 loc) · 927 Bytes
/
uncsv.gemspec
File metadata and controls
31 lines (24 loc) · 927 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
29
30
31
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'uncsv/version'
Gem::Specification.new do |spec|
spec.name = 'uncsv'
spec.version = Uncsv::VERSION
spec.authors = ['Justin Howard']
spec.email = ['jmhoward0@gmail.com']
spec.license = 'MIT'
spec.summary = 'A parser for unruly CSVs'
spec.homepage = 'https://github.com/nullscreen/uncsv'
rubydoc = 'https://www.rubydoc.info/gems'
spec.metadata = {
'changelog_uri' => "#{spec.homepage}/blob/main/CHANGELOG.md",
'documentation_uri' => "#{rubydoc}/#{spec.name}/#{spec.version}",
'rubygems_mfa_required' => 'true'
}
spec.files = Dir['lib/**/*.rb', '*.md', '*.txt', '.yardopts']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3'
spec.add_development_dependency 'fakefs', '~> 1.2'
spec.add_development_dependency 'rspec', '~> 3.10'
end