2017-01-06 03:11:45 +00:00
|
|
|
class Binding
|
2018-10-26 17:08:30 +00:00
|
|
|
# :nodoc:
|
2017-01-06 03:11:45 +00:00
|
|
|
def irb
|
|
|
|
require 'irb'
|
|
|
|
irb
|
|
|
|
end
|
2017-12-01 03:54:49 +00:00
|
|
|
|
|
|
|
# suppress redefinition warning
|
|
|
|
alias irb irb # :nodoc:
|
2017-01-06 03:11:45 +00:00
|
|
|
end
|
2017-11-30 01:31:00 +00:00
|
|
|
|
|
|
|
module Kernel
|
|
|
|
def pp(*objs)
|
|
|
|
require 'pp'
|
2017-11-30 02:12:42 +00:00
|
|
|
pp(*objs)
|
2017-11-30 01:31:00 +00:00
|
|
|
end
|
2017-12-01 03:54:49 +00:00
|
|
|
|
|
|
|
# suppress redefinition warning
|
|
|
|
alias pp pp # :nodoc:
|
2018-10-11 01:03:05 +00:00
|
|
|
|
|
|
|
private :pp
|
2017-11-30 01:31:00 +00:00
|
|
|
end
|
2022-02-17 18:02:42 +09:00
|
|
|
|
|
|
|
autoload :Set, 'set'
|
|
|
|
|
|
|
|
module Enumerable
|
|
|
|
# Makes a set from the enumerable object with given arguments.
|
|
|
|
def to_set(klass = Set, *args, &block)
|
|
|
|
klass.new(self, *args, &block)
|
|
|
|
end
|
|
|
|
end
|