class Papa::Command::Git::Branch

Public Class Methods

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