All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jruby.kernel.gem_prelude.rb Maven / Gradle / Ivy

if defined?(Gem)
  begin
    require 'rubygems'
  rescue LoadError
    # For JRUBY-5333, gracefully fail to load, since stdlib may not be available
    warn 'RubyGems not found; disabling gems' if $VERBOSE
  else
    begin
      gem 'did_you_mean'
      require 'did_you_mean'
      Gem.clear_paths
    rescue Gem::LoadError, LoadError
    end if defined?(DidYouMean)
  end
end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy