summaryrefslogtreecommitdiff
path: root/lib/irb/input-method.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/irb/input-method.rb')
-rw-r--r--lib/irb/input-method.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/irb/input-method.rb b/lib/irb/input-method.rb
index 0b22d9ca74..9c3d682c66 100644
--- a/lib/irb/input-method.rb
+++ b/lib/irb/input-method.rb
@@ -6,13 +6,13 @@
#
# --
#
-#
+#
#
require 'irb/src_encoding'
require 'irb/magic-file'
module IRB
- #
+ #
# InputMethod
# StdioInputMethod
# FileInputMethod
@@ -28,7 +28,7 @@ module IRB
attr_reader :file_name
attr_accessor :prompt
-
+
def gets
IRB.fail NotImplementedError, "gets"
end
@@ -38,7 +38,7 @@ module IRB
false
end
end
-
+
class StdioInputMethod < InputMethod
def initialize
super
@@ -70,7 +70,7 @@ module IRB
@stdin.external_encoding
end
end
-
+
class FileInputMethod < InputMethod
def initialize(file)
super
@@ -97,7 +97,7 @@ module IRB
begin
require "readline"
class ReadlineInputMethod < InputMethod
- include Readline
+ include Readline
def initialize
super