Sha256: f1219c38c3cfbd4bbf21441faa7193dbd313541f45a75dc6360e848ed398b28c

Contents?: true

Size: 1.62 KB

Versions: 71

Compression:

Stored size: 1.62 KB

Contents

module Git
  
  # object that holds all the available branches
  class Branches

    include Enumerable
    
    def initialize(base)
      @branches = {}
      
      @base = base
            
      @base.lib.branches_all.each do |b|
        @branches[b[0]] = Git::Branch.new(@base, b[0])
      end
    end

    def local
      self.select { |b| !b.remote }
    end
    
    def remote
      self.select { |b| b.remote }
    end
    
    # array like methods

    def size
      @branches.size
    end    
    
    def each(&block)
      @branches.values.each(&block)
    end
    
    # Returns the target branch
    #
    # Example:
    #   Given (git branch -a):
    #    master
    #    remotes/working/master
    #
    #   g.branches['master'].full #=> 'master'
    #   g.branches['working/master'].full => 'remotes/working/master'
    #   g.branches['remotes/working/master'].full => 'remotes/working/master'
    #
    # @param [#to_s] branch_name the target branch name.
    # @return [Git::Branch] the target branch.
    def [](branch_name)
      @branches.values.inject(@branches) do |branches, branch|
        branches[branch.full] ||= branch

        # This is how Git (version 1.7.9.5) works. 
        # Lets you ignore the 'remotes' if its at the beginning of the branch full name (even if is not a real remote branch). 
        branches[branch.full.sub('remotes/', '')] ||= branch if branch.full =~ /^remotes\/.+/
        
        branches
      end[branch_name.to_s]
    end
    
    def to_s
      out = ''
      @branches.each do |k, b|
        out << (b.current ? '* ' : '  ') << b.to_s << "\n"
      end
      out
    end
    
  end

end

Version data entries

71 entries across 71 versions & 15 rubygems

Version Path
git-2.3.3 lib/git/branches.rb
git-2.3.2 lib/git/branches.rb
git-2.3.1 lib/git/branches.rb
git-2.3.0 lib/git/branches.rb
git-2.2.0 lib/git/branches.rb
git-2.1.1 lib/git/branches.rb
git-2.1.0 lib/git/branches.rb
git-2.0.0.pre3 lib/git/branches.rb
git-2.0.0.pre2 lib/git/branches.rb
git-2.0.0.pre1 lib/git/branches.rb
git-1.19.1 lib/git/branches.rb
git-1.19.0 lib/git/branches.rb
git-1.18.0 lib/git/branches.rb
git-1.17.2 lib/git/branches.rb
git-1.17.1 lib/git/branches.rb
git-1.17.0 lib/git/branches.rb
git-1.16.0 lib/git/branches.rb
git-1.15.0 lib/git/branches.rb
git-1.14.0 lib/git/branches.rb
git-1.13.2 lib/git/branches.rb