summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2024-03-07 15:48:54 -0700
committerDan Allen <dan.j.allen@gmail.com>2024-03-07 15:48:54 -0700
commit8a64f8cafd9471c046deb7a939b700e5701cfd99 (patch)
tree4e4d7fb77497f874d3c0ddbbee68aba86d290e88
parent62ec257cc3eb9ae55f84258a6fceea3179f2282e (diff)
add development dependency on base64 until next patch release of asciidoctor
-rw-r--r--Gemfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index e46a41e1..3f29eaad 100644
--- a/Gemfile
+++ b/Gemfile
@@ -8,6 +8,7 @@ gemspec
gem 'asciidoctor', ENV['ASCIIDOCTOR_VERSION'], require: false if ENV.key? 'ASCIIDOCTOR_VERSION'
gem 'asciidoctor-diagram', ENV['ASCIIDOCTOR_DIAGRAM_VERSION'], require: false if ENV.key? 'ASCIIDOCTOR_DIAGRAM_VERSION'
gem 'asciidoctor-kroki', ENV['ASCIIDOCTOR_KROKI_VERSION'], require: false if ENV.key? 'ASCIIDOCTOR_KROKI_VERSION'
+gem 'base64', require: false if (Gem::Version.new RUBY_VERSION) >= (Gem::Version.new '3.3.0') # required until asciidoctor 2.0.22 is out
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') && RUBY_ENGINE == 'ruby'