From bc9a7e20da5fdc4dc58bec666c1de6343f5f1eb6 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Thu, 29 Aug 2024 12:30:51 +0900 Subject: [PATCH] bundle haml5 on Ruby < 2.3 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 52b8226..5733c26 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,7 @@ source 'https://rubygems.org' gemspec if RUBY_VERSION < '2.3' - gem 'haml', '6.1.3' + gem 'haml', '<= 6.1.3' end gem 'nokogiri', RUBY_VERSION < '2.1' ? '~> 1.6.0' : '>= 1.7'