forked from vkononov/fillable-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfillable-pdf.gemspec
More file actions
28 lines (23 loc) · 1.22 KB
/
fillable-pdf.gemspec
File metadata and controls
28 lines (23 loc) · 1.22 KB
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
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 = ['vadim@poetic.com']
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.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_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_runtime_dependency 'rjb', '~> 1.6'
end