Skip to content

Commit 07255ab

Browse files
authored
Use bundler/setup instead of Bunlder.require in multiline_repl (#860)
Bundler.require requires all gems including gems multiline_repl doesn't need. This will fix ci failure in ruby-2.7 caused by warning message displayed while requiring power_assert.
1 parent 7eef150 commit 07255ab

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/reline/yamatanooroti/multiline_repl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!/usr/bin/env ruby
22

3-
4-
require 'bundler'
5-
Bundler.require
3+
require 'bundler/setup'
64

75
require 'reline'
86
require 'optparse'

0 commit comments

Comments
 (0)