combine_pdf 0.1.6 → 0.1.7
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 +6 -0
- data/lib/combine_pdf/combine_pdf_pdf.rb +1 -1
- data/lib/combine_pdf/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2dad9414d26c8b0a8e197cba983fce4f01aa395
|
|
4
|
+
data.tar.gz: c13bcf4b4ca5b8eb1bcd64c2f06bd86a24a6fb1a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9426188b388f66219a205367e0560883905deb20d7d4bd2041dff0b98cd71126edf46a889caf776830d2af6337fd2b2fef93c503fbbc3a24ad1dde1ea93e004f
|
|
7
|
+
data.tar.gz: b7089d932bfba7936735ae8e01e0aebf75da0b945b3e9b00033d28e3fe9619d218fd26cf0e011c01f960cd713d45714326370816b78fa7e146d8e13f3d64b95d
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
***
|
|
4
4
|
|
|
5
|
+
Change log v.0.1.7
|
|
6
|
+
|
|
7
|
+
**fix**: PDF `insert` had a typo in the code that would cause failure when unsupported object insertion was attempted - fixed by Nathan Keyes (nkeyes).
|
|
8
|
+
|
|
9
|
+
***
|
|
10
|
+
|
|
5
11
|
Change log v.0.1.6
|
|
6
12
|
|
|
7
13
|
**fix**: added Mutex to font library (which was shared by all PDFWriter objects) - now fonts are thread safe (PDF objects are NOT thread safe by design).
|
|
@@ -318,7 +318,7 @@ module CombinePDF
|
|
|
318
318
|
pages_to_add = [data]
|
|
319
319
|
else
|
|
320
320
|
warn "Shouldn't add objects to the file unless they are PDF objects or PDF pages (an Array or a single PDF page)."
|
|
321
|
-
|
|
321
|
+
return false # return false, which will also stop any chaining.
|
|
322
322
|
end
|
|
323
323
|
catalog = rebuild_catalog
|
|
324
324
|
pages_array = catalog[:Pages][:referenced_object][:Kids]
|
data/lib/combine_pdf/version.rb
CHANGED
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.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Boaz Segev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-11-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby-rc4
|
|
@@ -97,8 +97,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
97
97
|
version: '0'
|
|
98
98
|
requirements: []
|
|
99
99
|
rubyforge_project:
|
|
100
|
-
rubygems_version: 2.
|
|
100
|
+
rubygems_version: 2.4.3
|
|
101
101
|
signing_key:
|
|
102
102
|
specification_version: 4
|
|
103
103
|
summary: Combine, stamp and watermark PDF files in pure Ruby.
|
|
104
104
|
test_files: []
|
|
105
|
+
has_rdoc:
|