From 975c091d14376a077a998526accf90fda1f825dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?iBug=20=E2=99=A6?= Date: Thu, 23 Jul 2020 15:03:48 +0800 Subject: [PATCH] Fix IRB error "ubygems" (#8199) (#8312) Merge pull request 8312 --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 786a2626..41b707c8 100644 --- a/Rakefile +++ b/Rakefile @@ -159,5 +159,5 @@ end desc "Open an irb session preloaded with this library" task :console do - sh "irb -rubygems -r ./lib/#{name}.rb" + sh "irb -r ./lib/#{name}.rb" end