class Papa::Command::Git::BranchDelete

Public Class Methods

new(branch_name) click to toggle source
Calls superclass method Papa::Command::Base::new
# File lib/papa/command/git/branch_delete.rb, line 7
def initialize(branch_name)
  command = "git branch -D #{branch_name}"
  super(command)
end