acroforge 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +11 -0
- data/LICENSE.txt +21 -0
- data/README.md +217 -0
- data/Rakefile +10 -0
- data/acroforge.gemspec +37 -0
- data/exe/acroforge +5 -0
- data/lib/acroforge/all_text_processor.rb +126 -0
- data/lib/acroforge/annotator.rb +137 -0
- data/lib/acroforge/cli.rb +351 -0
- data/lib/acroforge/constants.rb +46 -0
- data/lib/acroforge/engine.rb +869 -0
- data/lib/acroforge/labels.rb +112 -0
- data/lib/acroforge/preparer.rb +103 -0
- data/lib/acroforge/relabeler.rb +179 -0
- data/lib/acroforge/schema.rb +208 -0
- data/lib/acroforge/validator.rb +37 -0
- data/lib/acroforge/version.rb +5 -0
- data/lib/acroforge.rb +18 -0
- data/sig/acroforge.rbs +4 -0
- metadata +81 -0
metadata
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: acroforge
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Maxwell Nana Forson
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: hexapdf
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '1.0'
|
|
26
|
+
description: Compile, fill, and relabel garbage-named AcroForm PDFs through a spatial
|
|
27
|
+
heuristic and a human-reviewed mapping file.
|
|
28
|
+
email:
|
|
29
|
+
- nanaforson@gmail.com
|
|
30
|
+
executables:
|
|
31
|
+
- acroforge
|
|
32
|
+
extensions: []
|
|
33
|
+
extra_rdoc_files: []
|
|
34
|
+
files:
|
|
35
|
+
- CHANGELOG.md
|
|
36
|
+
- LICENSE.txt
|
|
37
|
+
- README.md
|
|
38
|
+
- Rakefile
|
|
39
|
+
- acroforge.gemspec
|
|
40
|
+
- exe/acroforge
|
|
41
|
+
- lib/acroforge.rb
|
|
42
|
+
- lib/acroforge/all_text_processor.rb
|
|
43
|
+
- lib/acroforge/annotator.rb
|
|
44
|
+
- lib/acroforge/cli.rb
|
|
45
|
+
- lib/acroforge/constants.rb
|
|
46
|
+
- lib/acroforge/engine.rb
|
|
47
|
+
- lib/acroforge/labels.rb
|
|
48
|
+
- lib/acroforge/preparer.rb
|
|
49
|
+
- lib/acroforge/relabeler.rb
|
|
50
|
+
- lib/acroforge/schema.rb
|
|
51
|
+
- lib/acroforge/validator.rb
|
|
52
|
+
- lib/acroforge/version.rb
|
|
53
|
+
- sig/acroforge.rbs
|
|
54
|
+
homepage: https://github.com/Lzcorp-Solutions/acroforge
|
|
55
|
+
licenses:
|
|
56
|
+
- MIT
|
|
57
|
+
metadata:
|
|
58
|
+
homepage_uri: https://github.com/Lzcorp-Solutions/acroforge
|
|
59
|
+
source_code_uri: https://github.com/Lzcorp-Solutions/acroforge/tree/main
|
|
60
|
+
bug_tracker_uri: https://github.com/Lzcorp-Solutions/acroforge/issues
|
|
61
|
+
changelog_uri: https://github.com/Lzcorp-Solutions/acroforge/blob/main/CHANGELOG.md
|
|
62
|
+
documentation_uri: https://lzcorp-solutions.github.io/acroforge/
|
|
63
|
+
rubygems_mfa_required: 'true'
|
|
64
|
+
rdoc_options: []
|
|
65
|
+
require_paths:
|
|
66
|
+
- lib
|
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - ">="
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '2.7'
|
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - ">="
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: '0'
|
|
77
|
+
requirements: []
|
|
78
|
+
rubygems_version: 4.0.6
|
|
79
|
+
specification_version: 4
|
|
80
|
+
summary: PDF AcroForm engine with heuristic-assisted field relabeling.
|
|
81
|
+
test_files: []
|