Returns the full name
(name-version) of thisGem. Platform
information is included (name-version-platform) if it is specified and not
the default Rubyplatform.
# File lib/rubygems/basic_specification.rb, line 126
def full_name
if platform == Gem::Platform::RUBY or platform.nil? then
"#{name}-#{version}".dup.untaint
else
"#{name}-#{version}-#{platform}".dup.untaint
end
end