Created
May 12, 2017 16:43
-
-
Save Behinder/73b0504cf61e063f911d7128d7415149 to your computer and use it in GitHub Desktop.
Merge all pdf in directory into one
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'combine_pdf' | |
pdf = CombinePDF.new | |
Dir.glob("*.pdf") do |file| | |
pdf << CombinePDF.load(file) | |
end | |
pdf.save "KukBuk.pdf" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment