combine_pdf 0.2.21 → 0.2.27
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/CHANGELOG.md +54 -0
- data/LICENSE.txt +2 -1
- data/README.md +30 -0
- data/lib/combine_pdf.rb +12 -18
- data/lib/combine_pdf/api.rb +156 -153
- data/lib/combine_pdf/basic_writer.rb +41 -53
- data/lib/combine_pdf/decrypt.rb +235 -228
- data/lib/combine_pdf/filter.rb +79 -90
- data/lib/combine_pdf/fonts.rb +451 -459
- data/lib/combine_pdf/page_methods.rb +864 -877
- data/lib/combine_pdf/parser.rb +649 -578
- data/lib/combine_pdf/pdf_protected.rb +377 -218
- data/lib/combine_pdf/pdf_public.rb +490 -462
- data/lib/combine_pdf/renderer.rb +157 -163
- data/lib/combine_pdf/version.rb +1 -1
- data/test/automated +79 -0
- data/test/console +4 -4
- data/test/named_dest +84 -0
- metadata +6 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: combine_pdf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.27
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boaz Segev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-rc4
|
@@ -80,7 +80,9 @@ files:
|
|
80
80
|
- lib/combine_pdf/pdf_public.rb
|
81
81
|
- lib/combine_pdf/renderer.rb
|
82
82
|
- lib/combine_pdf/version.rb
|
83
|
+
- test/automated
|
83
84
|
- test/console
|
85
|
+
- test/named_dest
|
84
86
|
homepage: https://github.com/boazsegev/combine_pdf
|
85
87
|
licenses:
|
86
88
|
- MIT
|
@@ -106,5 +108,7 @@ signing_key:
|
|
106
108
|
specification_version: 4
|
107
109
|
summary: Combine, stamp and watermark PDF files in pure Ruby.
|
108
110
|
test_files:
|
111
|
+
- test/automated
|
109
112
|
- test/console
|
113
|
+
- test/named_dest
|
110
114
|
has_rdoc:
|