method

perform_git_push

ruby latest stable - Class: Bundler::GemHelper

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

perform_git_push(options = "")
protected

No documentation available.

# File lib/bundler/gem_helper.rb, line 128
    def perform_git_push(options = "")
      cmd = "git push #{options}"
      out, code = sh_with_code(cmd)
      raise "Couldn't git push. `#{cmd}' failed with the following output:\n\n#{out}\n" unless code == 0
    end