Sha256: cf2913d2bc4d14d55d592242744d093b59033c1c2516d7a9eb061f6eb991792a

Contents?: true

Size: 1.49 KB

Versions: 4

Compression:

Stored size: 1.49 KB

Contents

#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

module Kernel

  ##
  # The Kernel#require from before SlimGems was loaded.

  alias gem_original_require require

  ##
  # When SlimGems is required, Kernel#require is replaced with our own which
  # is capable of loading gems on demand.
  #
  # When you call <tt>require 'x'</tt>, this is what happens:
  # * If the file can be loaded from the existing Ruby loadpath, it
  #   is.
  # * Otherwise, installed gems are searched for a file that matches.
  #   If it's found in gem 'y', that gem is activated (added to the
  #   loadpath).
  #
  # The normal <tt>require</tt> functionality of returning false if
  # that file has already been loaded is preserved.

  def require(path) # :doc:
    gem_original_require path
  rescue LoadError => load_error
    if load_error.message.end_with?(path)
      if Gem.try_activate(path)
        return gem_original_require(path)
      end
    end

    raise load_error
  end
  
  if RUBY_VERSION < '1.8.7'
    undef require
    def require(path)
      gem_original_require path
    rescue LoadError => load_error
      if load_error.message.rindex(path) == load_error.message.size - path.size
        if Gem.try_activate(path)
          return gem_original_require(path)
        end
      end

      raise load_error
    end
  end
  
  private :require
  private :gem_original_require

end unless Kernel.private_method_defined?(:gem_original_require)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
slimgems-1.3.9.5 lib/rubygems/custom_require.rb
slimgems-1.3.9.4 lib/rubygems/custom_require.rb
slimgems-1.3.9.3 lib/rubygems/custom_require.rb
slimgems-1.3.9.2 lib/rubygems/custom_require.rb