Flowdock
method

loaded_path?

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: Gem
loaded_path?(path) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rubygems.rb, line 988
  def self.loaded_path? path
    # TODO: ruby needs a feature to let us query what's loaded in 1.8 and 1.9
    $LOADED_FEATURES.find { |s|
      s =~ /(^|\/)#{Regexp.escape path}#{Regexp.union(*Gem.suffixes)}$/
    }
  end
Register or log in to add new notes.