From f2435c15089f5789a1ad6bd5bd57d4ae5a9913c2 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 12 Aug 2020 11:09:25 +0900 Subject: [ruby/reline] Get rid of loading pathname unnecessarily https://github.com/ruby/reline/commit/9bd54b7f1c --- lib/reline/config.rb | 2 -- lib/reline/line_editor.rb | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/reline/config.rb b/lib/reline/config.rb index 1cd607902a..370d100414 100644 --- a/lib/reline/config.rb +++ b/lib/reline/config.rb @@ -1,5 +1,3 @@ -require 'pathname' - class Reline::Config attr_reader :test_mode diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb index 4eee4bd632..c9d88edc85 100644 --- a/lib/reline/line_editor.rb +++ b/lib/reline/line_editor.rb @@ -2,7 +2,6 @@ require 'reline/kill_ring' require 'reline/unicode' require 'tempfile' -require 'pathname' class Reline::LineEditor # TODO: undo @@ -2145,7 +2144,7 @@ class Reline::LineEditor fp.path } system("#{ENV['EDITOR']} #{path}") - @line = Pathname.new(path).read + @line = File.read(path) finish end -- cgit v1.2.3