summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2021-04-30 03:09:29 -0600
committerDan Allen <dan.j.allen@gmail.com>2021-04-30 03:09:29 -0600
commit6b6fe1aeb83525b7ba013f7eaa265dd62f2f9392 (patch)
tree33623cd3dac97ad7651ab4ac8a489a41ea616238 /Gemfile
parent19190c8fd9249aa5ee7fb78b0ac58a9974663127 (diff)
sort gems in Gemfile [skip ci]
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 344bf0f8..44716eaa 100644
--- a/Gemfile
+++ b/Gemfile
@@ -7,9 +7,9 @@ gemspec
group :development do
gem 'asciimath', ENV['ASCIIMATH_VERSION'] if ENV.key? 'ASCIIMATH_VERSION'
+ gem 'haml', '~> 4.0' if RUBY_ENGINE == 'truffleruby'
gem 'pygments.rb', ENV['PYGMENTS_VERSION'] if ENV.key? 'PYGMENTS_VERSION'
gem 'rouge', ENV['ROUGE_VERSION'] if ENV.key? 'ROUGE_VERSION'
- gem 'haml', '~> 4.0' if RUBY_ENGINE == 'truffleruby'
end
group :docs do
@@ -27,6 +27,6 @@ end
#end
group :ci do
- gem 'simplecov', '~> 0.16.0'
gem 'json', '~> 2.2.0' if RUBY_ENGINE == 'truffleruby'
+ gem 'simplecov', '~> 0.16.0'
end