summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorGuillaume Grossetie <ggrossetie@gmail.com>2019-08-25 20:20:02 +0200
committerDan Allen <dan.j.allen@gmail.com>2019-08-25 12:20:02 -0600
commitd89411ceb93533d57a75f313d2cc6735bf1d216d (patch)
treee306ad0fa91c37251a744c811351078f020d38bc /Gemfile
parent7481831af83a23e0d8121702d5719d659a93a4ad (diff)
upgrade truffleruby to 19.2.0; enable in nightly job (PR #3305)
* upgrade truffleruby to 19.2.0 * run TruffleRuby only when the build was triggered by cron * use Haml version 4 when running on TruffleRuby (because version 5 is using Ripper which is unsupported)
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index ecffc678..62ccf926 100644
--- a/Gemfile
+++ b/Gemfile
@@ -25,3 +25,7 @@ end
group :ci do
gem 'simplecov', '~> 0.16.0'
end
+
+if RUBY_ENGINE == 'truffleruby'
+ gem 'haml', '~> 4.0'
+end