acro_that 0.1.0 → 0.1.1
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 +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +17 -0
- data/acro_that.gemspec +5 -4
- data/lib/acro_that/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7cccc792d205578fc981258a0b171e4906b3f9c945ac2abd664447054251f940
|
|
4
|
+
data.tar.gz: 4544010bb0642b5c88cd9b5cc95a0c97d018109ecbe19648807419590d3f5e8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a43d6c18e6babead9223d93f661032ff324ee45fae76646d2d8c37528ea4ddf294b5c5240ddc67d894c53aaff05d2245baff6c9c6f7813d9dad83c0584e5cea
|
|
7
|
+
data.tar.gz: 17052dece8b5a7700c4d9f822b2ba7e2f2b8d0ded537a173d38b2e7190ffc0b6d2d9f86d51848b8d7dd99cd35015cda99299dfab0b7f87a5df1d0404e087cbe8
|
data/.gitignore
CHANGED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.1.1] - 2025-10-31
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Initial release of AcroThat
|
|
12
|
+
- Pure Ruby PDF AcroForm editing library
|
|
13
|
+
- Support for parsing, listing, adding, removing, and modifying form fields
|
|
14
|
+
- Signature field image appearance support (JPEG and PNG)
|
|
15
|
+
- PDF flattening functionality
|
|
16
|
+
- StringIO support for in-memory PDF processing
|
|
17
|
+
|
data/acro_that.gemspec
CHANGED
|
@@ -6,17 +6,18 @@ Gem::Specification.new do |spec|
|
|
|
6
6
|
spec.name = "acro_that"
|
|
7
7
|
spec.version = AcroThat::VERSION
|
|
8
8
|
spec.authors = ["Michael Wynkoop"]
|
|
9
|
-
spec.email = ["michaelwynkoop@corporatetools.com"]
|
|
9
|
+
# spec.email = ["michaelwynkoop@corporatetools.com"]
|
|
10
|
+
spec.email = ["wynk182@gmail.com"]
|
|
10
11
|
|
|
11
12
|
spec.summary = "Pure Ruby PDF AcroForm editing library"
|
|
12
13
|
spec.description = "A minimal pure Ruby library for parsing and editing PDF AcroForm fields using only stdlib"
|
|
13
|
-
spec.homepage = "https://github.com/
|
|
14
|
+
spec.homepage = "https://github.com/wynk182/acro_that"
|
|
14
15
|
spec.license = "MIT"
|
|
15
16
|
spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0")
|
|
16
17
|
|
|
17
18
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
|
-
spec.metadata["source_code_uri"] = "https://github.com/
|
|
19
|
-
spec.metadata["changelog_uri"] = "https://github.com/
|
|
19
|
+
spec.metadata["source_code_uri"] = "https://github.com/wynk182/acro_that"
|
|
20
|
+
spec.metadata["changelog_uri"] = "https://github.com/wynk182/acro_that/blob/main/CHANGELOG.md"
|
|
20
21
|
|
|
21
22
|
# Specify which files should be added to the gem when it is released.
|
|
22
23
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
data/lib/acro_that/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acro_that
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Wynkoop
|
|
@@ -83,7 +83,7 @@ dependencies:
|
|
|
83
83
|
description: A minimal pure Ruby library for parsing and editing PDF AcroForm fields
|
|
84
84
|
using only stdlib
|
|
85
85
|
email:
|
|
86
|
-
-
|
|
86
|
+
- wynk182@gmail.com
|
|
87
87
|
executables: []
|
|
88
88
|
extensions: []
|
|
89
89
|
extra_rdoc_files: []
|
|
@@ -91,6 +91,7 @@ files:
|
|
|
91
91
|
- ".DS_Store"
|
|
92
92
|
- ".gitignore"
|
|
93
93
|
- ".rubocop.yml"
|
|
94
|
+
- CHANGELOG.md
|
|
94
95
|
- Gemfile
|
|
95
96
|
- Gemfile.lock
|
|
96
97
|
- README.md
|
|
@@ -114,13 +115,13 @@ files:
|
|
|
114
115
|
- lib/acro_that/objstm.rb
|
|
115
116
|
- lib/acro_that/pdf_writer.rb
|
|
116
117
|
- lib/acro_that/version.rb
|
|
117
|
-
homepage: https://github.com/
|
|
118
|
+
homepage: https://github.com/wynk182/acro_that
|
|
118
119
|
licenses:
|
|
119
120
|
- MIT
|
|
120
121
|
metadata:
|
|
121
|
-
homepage_uri: https://github.com/
|
|
122
|
-
source_code_uri: https://github.com/
|
|
123
|
-
changelog_uri: https://github.com/
|
|
122
|
+
homepage_uri: https://github.com/wynk182/acro_that
|
|
123
|
+
source_code_uri: https://github.com/wynk182/acro_that
|
|
124
|
+
changelog_uri: https://github.com/wynk182/acro_that/blob/main/CHANGELOG.md
|
|
124
125
|
post_install_message:
|
|
125
126
|
rdoc_options: []
|
|
126
127
|
require_paths:
|