# File lib/bundler/gem_helper.rb, line 70
    def rubygem_push(path)
      out, _ = sh("gem push #{path}")
      raise "Gem push failed due to lack of RubyGems.org credentials." if out[/Enter your RubyGems.org credentials/]
      Bundler.ui.confirm "Pushed #{name} #{version} to rubygems.org"
    end