Sha256: d4a43a621c9538d9bcf4170230ecf7d74fe50aafd96c383407979e319865f273
Contents?: true
Size: 1.59 KB
Versions: 4
Compression:
Stored size: 1.59 KB
Contents
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.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_development_dependency 'bundler' spec.add_development_dependency 'minitest' spec.add_development_dependency 'rake' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'rubocop-md' spec.add_development_dependency 'rubocop-minitest' spec.add_development_dependency 'rubocop-performance' spec.add_development_dependency 'rubocop-rake' spec.add_runtime_dependency 'rjb', '~> 1.6' spec.requirements << 'JDK 8.x - 11.x' spec.metadata = { 'rubygems_mfa_required' => 'true' } end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fillable-pdf-0.9.5.2 | fillable-pdf.gemspec |
fillable-pdf-0.9.5.1 | fillable-pdf.gemspec |
fillable-pdf-0.9.5 | fillable-pdf.gemspec |
fillable-pdf-0.9.4 | fillable-pdf.gemspec |