-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjson_csv.gemspec
More file actions
25 lines (21 loc) · 909 Bytes
/
json_csv.gemspec
File metadata and controls
25 lines (21 loc) · 909 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
# frozen_string_literal: true
require File.expand_path('lib/json_csv/version', __dir__)
Gem::Specification.new do |s|
s.name = 'json_csv'
s.version = JsonCsv::VERSION
s.platform = Gem::Platform::RUBY
s.date = '2018-02-18'
s.summary = 'A library for converting json to csv...and back!'
s.description = 'A library for converting json to csv...and back!'
s.authors = ["Eric O'Hanlon"]
s.email = 'elo2112@columbia.edu'
s.homepage = 'https://github.com/cul/json_csv'
s.license = 'MIT'
s.required_ruby_version = '>= 2.6.0'
s.add_development_dependency('rake', '>= 10.1')
s.add_development_dependency('rspec', '~>3.7')
s.add_development_dependency('rubocul', '~> 4.0.6')
s.add_development_dependency('simplecov', '~> 0.15.1')
s.files = Dir['lib/**/*.rb', 'lib/tasks/**/*.rake', 'bin/*', 'LICENSE', '*.md']
s.require_paths = ['lib']
end