object that holds all the available branches
# File lib/git/branches.rb, line 35 def [](symbol) @branches[symbol.to_s] end
# File lib/git/branches.rb, line 31 def each(&block) @branches.values.each(&block) end
# File lib/git/branches.rb, line 17 def local self.select { |b| !b.remote } end
# File lib/git/branches.rb, line 21 def remote self.select { |b| b.remote } end
Generated with the Darkfish Rdoc Generator 2.