Sha256: 3b645aed6e1be75b3c101d2d40c10ecfd3556be236f6b09414b908f3c7b96c83
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $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://vkononov.github.io/fillable-pdf' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } 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', '~> 1.15' spec.add_development_dependency 'rake', '~> 12' spec.add_runtime_dependency 'rjb', '~> 1.5' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fillable-pdf-0.1.2 | fillable-pdf.gemspec |