diff options
author | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-02 17:52:43 +0000 |
---|---|---|
committer | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-02 17:52:43 +0000 |
commit | b9d42af0f28f7957c5a086a86175a0739d251c73 (patch) | |
tree | f17b04b88d2fc053851993a778a2a061b807038d /lib/irb/context.rb | |
parent | e859e668d2eb59f34ad18edb7458ce90076617e9 (diff) |
lib/*: Prefer require_relative over require, remove explicit extension
[#15206] [Fix GH-1976]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb/context.rb')
-rw-r--r-- | lib/irb/context.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb index 606d744e1e..e8e6a118e6 100644 --- a/lib/irb/context.rb +++ b/lib/irb/context.rb @@ -11,8 +11,8 @@ # require_relative "workspace" require_relative "inspector" -require "irb/input-method" -require "irb/output-method" +require_relative "input-method" +require_relative "output-method" module IRB # A class that wraps the current state of the irb session, including the |