method
find_full_gem_path
v2_4_6 -
Show latest stable
- Class:
Gem::BasicSpecification
find_full_gem_path()private
No documentation available.
# File lib/rubygems/basic_specification.rb, line 103
def find_full_gem_path # :nodoc:
# TODO: also, shouldn't it default to full_name if it hasn't been written?
path = File.expand_path File.join(gems_dir, full_name)
path.untaint
path
end