From f01eff9bfc9aac628d4afd1e3e3c3c47087b0062 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 6 Nov 2019 22:49:56 +0100 Subject: [PATCH] Gemfile: allow JRuby to install activesupport --- Gemfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 7bee5fab..df2f5935 100644 --- a/Gemfile +++ b/Gemfile @@ -26,6 +26,10 @@ if RUBY_ENGINE == 'jruby' gem 'trinidad' end +if RUBY_ENGINE == 'jruby' || RUBY_ENGINE == 'ruby' + gem "activesupport", "~> 5.1.6" +end + if RUBY_ENGINE == "ruby" gem 'less', '~> 2.0' gem 'therubyracer' @@ -34,7 +38,6 @@ if RUBY_ENGINE == "ruby" gem 'bluecloth' gem 'rdiscount' gem 'RedCloth' - gem "activesupport", "~> 5.1.6" gem 'puma' gem 'yajl-ruby' gem 'nokogiri'