From 4595f5e829d8f72e68f9cbf184ef0219a63848d5 Mon Sep 17 00:00:00 2001 From: Curt Howard Date: Tue, 29 Aug 2017 16:40:37 -0400 Subject: [PATCH] Depend on therubyracer 0.12.3 or higher (#2111) therubyracer needed a patch to be compatible with Ruby 2.4.1. When trying to initialize a middleman project on a machine running Ruby 2.4.1, chances are high that the installation will fail due to therubyracer. Fixes #2110 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index e42040dc..80d0b3df 100644 --- a/Gemfile +++ b/Gemfile @@ -36,7 +36,7 @@ gem 'phantomjs', '~> 2.1.1.0', require: false # For less, note there is no compatible JS runtime for windows gem 'therubyrhino', '>= 2.0', platforms: :jruby -gem 'therubyracer', '>= 0.12', platforms: :ruby +gem 'therubyracer', '~> 0.12.3', platforms: :ruby # Code Quality gem 'rubocop', '~> 0.24', require: false