1 2 3 4 5 6 7 8 9 10 11
module Git class Branch < Path @base = nil def initialize(base, name) @base = base end end end