From 07ac707758395749611e1028ef18127087d198db Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Thu, 1 Dec 2022 23:55:55 -0800 Subject: [PATCH] MJIT: Use install = true for bundler/inline It prints a `bundle install`-like output, which seems more useful than a silent output. --- tool/mjit/bindgen.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/mjit/bindgen.rb b/tool/mjit/bindgen.rb index c9bfc470c8..b846a91664 100755 --- a/tool/mjit/bindgen.rb +++ b/tool/mjit/bindgen.rb @@ -4,7 +4,7 @@ ENV['GEM_HOME'] = File.expand_path('./.bundle', __dir__) require 'rubygems/source' require 'bundler/inline' -gemfile do +gemfile(true) do source 'https://rubygems.org' gem 'ffi-clang', '0.7.0', require: false end