summaryrefslogtreecommitdiff
path: root/lib/highline/compatibility.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/highline/compatibility.rb')
-rw-r--r--lib/highline/compatibility.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/highline/compatibility.rb b/lib/highline/compatibility.rb
index 33c889c..ee13fd6 100644
--- a/lib/highline/compatibility.rb
+++ b/lib/highline/compatibility.rb
@@ -4,13 +4,13 @@ unless STDIN.respond_to? :getbyte
# HighLine adds #getbyte alias to #getc when #getbyte is not available.
class IO
# alias to #getc when #getbyte is not available
- alias_method :getbyte, :getc
+ alias getbyte getc
end
# HighLine adds #getbyte alias to #getc when #getbyte is not available.
class StringIO
# alias to #getc when #getbyte is not available
- alias_method :getbyte, :getc
+ alias getbyte getc
end
end
@@ -18,6 +18,6 @@ unless "".respond_to? :each_line
# HighLine adds #each_line alias to #each when each_line is not available.
class String
# alias to #each when each_line is not available.
- alias_method :each_line, :each
+ alias each_line each
end
end