summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-01 03:54:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-01 03:54:49 +0000
commit5761093ee1f7a30b2fbbbe0aaff507b96c13d9fd (patch)
tree7cfcc682cf7d8724ecda02e6addbfce76e40faa5
parent44320c5b8d780a1572206735a88212faf9428f11 (diff)
prelude.rb: suppress redefinition warnings
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60952 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--lib/irb.rb1
-rw-r--r--prelude.rb6
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/irb.rb b/lib/irb.rb
index dcc160f140..b07bc80c95 100644
--- a/lib/irb.rb
+++ b/lib/irb.rb
@@ -703,7 +703,6 @@ end
class Binding
# :nodoc:
- undef irb if method_defined?(:irb)
def irb
IRB.setup(eval("__FILE__"))
workspace = IRB::WorkSpace.new(self)
diff --git a/prelude.rb b/prelude.rb
index c0a8dfccfa..a693f46156 100644
--- a/prelude.rb
+++ b/prelude.rb
@@ -140,6 +140,9 @@ class Binding
require 'irb'
irb
end
+
+ # suppress redefinition warning
+ alias irb irb # :nodoc:
end
module Kernel
@@ -150,4 +153,7 @@ module Kernel
require 'pp'
pp(*objs)
end
+
+ # suppress redefinition warning
+ alias pp pp # :nodoc:
end