-
Notifications
You must be signed in to change notification settings - Fork 504
/
Copy pathroo.gemspec
33 lines (27 loc) · 1.37 KB
/
roo.gemspec
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
32
33
# frozen_string_literal: true
require_relative 'lib/roo/version'
Gem::Specification.new do |spec|
spec.name = 'roo'
spec.version = Roo::VERSION
spec.authors = ['Thomas Preymesser', 'Hugh McGowan', 'Ben Woosley', 'Oleksandr Simonov', 'Steven Daniels', 'Anmol Chopra']
spec.summary = 'Roo can access the contents of various spreadsheet files.'
spec.description = "Roo can access the contents of various spreadsheet files. It can handle\n* OpenOffice\n* Excelx\n* LibreOffice\n* CSV"
spec.homepage = 'https://github.com/roo-rb/roo'
spec.license = 'MIT'
spec.files = Dir['lib/**/*', '*.md', 'LICENSE', 'roo.gemspec', 'examples/**/*']
spec.require_paths = ['lib']
if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby'
spec.required_ruby_version = '>= 2.6.0'
else
spec.required_ruby_version = '>= 2.7.0'
end
spec.add_dependency 'nokogiri', '~> 1'
spec.add_dependency 'rubyzip', '>= 1.3.0', '< 3.0.0'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'minitest', '~> 5.4', '>= 5.4.3'
spec.add_development_dependency 'rack', '~> 1.6', '< 2.0.0'
if RUBY_VERSION >= '3.0.0'
spec.add_development_dependency 'matrix'
end
end