class LoadError

for RubyGems without Bundler environment. If loading library is not part of the default gems and the bundled gems, warn it.

Public Instance Methods

message() click to toggle source
Calls superclass method
# File bundled_gems.rb, line 128
def message
  if !defined?(Bundler) && Gem::BUNDLED_GEMS::SINCE[path] && !Gem::BUNDLED_GEMS::WARNED[path]
    warn path + Gem::BUNDLED_GEMS.build_message(path)
  end
  super
end