-
Notifications
You must be signed in to change notification settings - Fork 48
/
thinreports.gemspec
31 lines (25 loc) · 1.01 KB
/
thinreports.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
# frozen_string_literal: true
rootdir = File.expand_path(File.dirname(__FILE__))
require "#{rootdir}/lib/thinreports/version"
Gem::Specification.new do |s|
s.name = 'thinreports'
s.version = Thinreports::VERSION
s.author = 'Matsukei Co.,Ltd.'
s.email = '[email protected]'
s.summary = 'An open source report generation tool for Ruby.'
s.description = 'Thinreports is an open source report generation tool for Ruby.'
s.homepage = 'http://www.thinreports.org'
s.license = 'MIT'
s.metadata = { 'rubygems_mfa_required' => 'true' }
s.required_ruby_version = Gem::Requirement.new('>= 3.0.0')
s.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) }
end
s.require_paths = ['lib']
s.add_dependency 'prawn', '>= 2.4.0'
s.add_dependency 'prawn-disable_word_break', '>= 2.3.1'
s.add_dependency 'base64'
s.add_dependency 'bigdecimal'
s.add_dependency 'matrix'
s.add_dependency 'rexml'
end