-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathfillable-pdf.gemspec
31 lines (26 loc) · 1.26 KB
/
fillable-pdf.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fillable-pdf/version'
Gem::Specification.new do |spec|
spec.name = 'fillable-pdf'
spec.version = FillablePDF::VERSION
spec.authors = ['Vadim Kononov']
spec.email = ['[email protected]']
spec.summary = 'Fill out or extract field values from simple fillable PDF forms using iText.'
spec.description = 'FillablePDF is an extremely simple and lightweight utility that bridges iText and Ruby in order to fill out fillable PDF forms or extract field values from previously filled out PDF forms.'
spec.homepage = 'https://github.com/vkononov/fillable-pdf'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(example|test|spec|features)/}) }
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = %w[ext lib]
spec.add_dependency 'base64', '~> 0.2.0'
spec.add_dependency 'rjb', '~> 1.6.0'
spec.requirements << 'JDK 8.x - 11.x'
spec.metadata = {
'rubygems_mfa_required' => 'true'
}
end