method

find_full_gem_path

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