class Bundler::RemoteSpecification

def method_missing(method, *args, &blk)

def method_missing(method, *args, &blk)
  if Gem::Specification.new.respond_to?(method)
    _remote_specification.send(method, *args, &blk)
  else
    super
  end
end