Loads a Gem::Specification from this
set which has the given name, version ver,platform. The source is ignored.
# File lib/rubygems/test_case.rb, line 1422
def load_spec name, ver, platform, source
dep = Gem::Dependency.new name, ver
spec = find_spec dep
Gem::Specification.new spec.name, spec.version do |s|
s.platform = spec.platform
end
end