diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-04-16 11:06:23 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-04-16 11:06:23 +0100 |
commit | 8e8f9e4e1f3d965923aa31d2720fdde712e9aa86 (patch) | |
tree | 0daa1becc11e37c09f0b0832038e353821d53815 | |
parent | c065c64017b9687f68abb30ca75fcb986fabf73b (diff) |
Break up long line.
-rw-r--r-- | lib/alaveteli_text_masker.rb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/alaveteli_text_masker.rb b/lib/alaveteli_text_masker.rb index 0ba4fd2cf..5d836f66c 100644 --- a/lib/alaveteli_text_masker.rb +++ b/lib/alaveteli_text_masker.rb @@ -60,7 +60,15 @@ module AlaveteliTextMasker def compress_pdf(text) if AlaveteliConfiguration::use_ghostscript_compression - command = ["gs", "-sDEVICE=pdfwrite", "-dCompatibilityLevel=1.4", "-dPDFSETTINGS=/screen", "-dNOPAUSE", "-dQUIET", "-dBATCH", "-sOutputFile=-", "-"] + command = ["gs", + "-sDEVICE=pdfwrite", + "-dCompatibilityLevel=1.4", + "-dPDFSETTINGS=/screen", + "-dNOPAUSE", + "-dQUIET", + "-dBATCH", + "-sOutputFile=-", + "-"] else command = ["pdftk", "-", "output", "-", "compress"] end |