summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2020-01-25 23:57:48 -0700
committerDan Allen <dan.j.allen@gmail.com>2020-01-25 23:58:49 -0700
commit9176c22c98ac735ce5cdd57ecfb8e096443dc247 (patch)
treee7e70110801a021411b1f44182e2dfef6ebf3354 /Gemfile
parent4c240187028c4d93202dfef97e4a8650dfc5f8ef (diff)
add test for integration with prawn-gmagick
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Gemfile b/Gemfile
index caa12f17..c8cd5f6e 100644
--- a/Gemfile
+++ b/Gemfile
@@ -6,16 +6,17 @@ source 'https://rubygems.org'
gemspec
gem 'asciidoctor', ENV['ASCIIDOCTOR_VERSION'], require: false if ENV.key? 'ASCIIDOCTOR_VERSION'
+gem 'open-uri-cached', require: false
+gem 'prawn-gmagick', ENV['PRAWN_GMAGICK_VERSION'], require: false if ENV.key? 'PRAWN_GMAGICK_VERSION'
# NOTE use prawn-table from upstream (pre-0.2.3) to verify fix for #599
gem 'prawn-table', git: 'https://github.com/prawnpdf/prawn-table.git', ref: '515f2db294866a343b05d15f94e5fb417a32f6ff', require: false
-# Add unicode (preferred) or activesupport to transform case of text containing multibyte chars on Ruby < 2.4
-gem 'unicode', require: false if (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '2.4.0')
-#gem 'activesupport', '4.2.7.1', require: false if (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '2.4.0')
-gem 'open-uri-cached', require: false
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'
gem 'rouge', ENV['ROUGE_VERSION'], require: false if ENV.key? 'ROUGE_VERSION'
gem 'text-hyphen', require: false
+# Add unicode (preferred) or activesupport to transform case of text containing multibyte chars on Ruby < 2.4
+gem 'unicode', require: false if (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '2.4.0')
+#gem 'activesupport', '4.2.7.1', require: false if (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '2.4.0')
group :docs do
gem 'yard', require: false