method
load_paths
ruby latest stable - Class:
Gem::Specification
load_paths()public
No documentation available.
# File lib/bundler/rubygems_ext.rb, line 65
def load_paths
return full_require_paths if respond_to?(:full_require_paths)
require_paths.map do |require_path|
if require_path.include?(full_gem_path)
require_path
else
File.join(full_gem_path, require_path)
end
end
end