diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-06-12 14:32:02 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-06-12 14:32:54 -0600 |
| commit | e17db3990a58cee097df478e6fef2e7901f59efd (patch) | |
| tree | 962d10aef9aeae522cf2e86f5a4d9b16b408b57c /Gemfile | |
| parent | fa1539ac12934042e39209ca045892645720eb76 (diff) | |
don't attempt to intall prawn-gmagick unless RUBY_ENGINE is ruby [skip ci]
Diffstat (limited to 'Gemfile')
| -rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ gem 'asciidoctor-diagram', ENV['ASCIIDOCTOR_DIAGRAM_VERSION'], require: false if gem 'asciidoctor-kroki', ENV['ASCIIDOCTOR_KROKI_VERSION'], require: false if ENV.key? 'ASCIIDOCTOR_KROKI_VERSION' gem 'coderay', '~> 1.1.0', require: false gem 'open-uri-cached', '~> 1.0.0', require: false -gem 'prawn-gmagick', ENV['PRAWN_GMAGICK_VERSION'], require: false if ENV.key? 'PRAWN_GMAGICK_VERSION' +gem 'prawn-gmagick', ENV['PRAWN_GMAGICK_VERSION'], require: false if (ENV.key? 'PRAWN_GMAGICK_VERSION') && RUBY_ENGINE == 'ruby' gem 'pygments.rb', ENV['PYGMENTS_VERSION'], require: false if ENV.key? 'PYGMENTS_VERSION' gem 'rghost', ENV['RGHOST_VERSION'], require: false if ENV.key? 'RGHOST_VERSION' # Asciidoctor PDF supports Rouge >= 2 (verified in CI build using 2.0.0) |
