From d656faeb6c2bc22af58ae80cb2b773d1311cb120 Mon Sep 17 00:00:00 2001 From: Daniel Nolan Date: Thu, 1 Sep 2022 09:18:00 -0400 Subject: [PATCH] Install poppler via homebrew on mac (#613) * I setup my new macbook recently using laptop. One of the projects I have been working on had a failing spec related to pdf previews with ActiveStorage preview. The spec worked fine on CI but Ubuntu has poppler-utils installed by default. * Add line to mac script to install poppler via homebrew --- mac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mac b/mac index 86923164a..c88a7aa5d 100644 --- a/mac +++ b/mac @@ -131,6 +131,9 @@ brew "gh" # Image manipulation brew "imagemagick" +# PDF Rendering +brew "poppler" + # Programming language prerequisites and package managers brew "libyaml" # should come after openssl brew "coreutils"