Permalink
Cannot retrieve contributors at this time
22 lines (18 sloc)
279 Bytes
|
class Binding |
|
# :nodoc: |
|
def irb |
|
require 'irb' |
|
irb |
|
end |
|
|
|
# suppress redefinition warning |
|
alias irb irb # :nodoc: |
|
end |
|
|
|
module Kernel |
|
def pp(*objs) |
|
require 'pp' |
|
pp(*objs) |
|
end |
|
|
|
# suppress redefinition warning |
|
alias pp pp # :nodoc: |
|
|
|
private :pp |
|
end |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.