jruby.kernel.gem_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.
if Object.const_defined?(:Gem)
begin
require 'rubygems.rb'
rescue LoadError # java -jar lib/jruby.jar -e '...'
warn 'RubyGems not found; disabling gems' if $VERBOSE
else
begin
gem 'did_you_mean'
require 'did_you_mean'
Gem.clear_paths
rescue LoadError # Gem::LoadError < LoadError
end if Object.const_defined?(:DidYouMean)
end
end