
jruby.kernel.prelude.rb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.jruby
Show all versions of org.apache.servicemix.bundles.jruby
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
The newest version!
class Binding
# :nodoc:
def irb
require 'irb'
irb
end
end
module Kernel
def pp(*objs)
require 'pp'
pp(*objs)
end
private :pp
end
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
© 2015 - 2025 Weber Informatics LLC | Privacy Policy