Class: MGit::Repository

Inherits:
Object
  • Object
show all
Defined in:
lib/mgit/repository.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, path) ⇒ Repository

Returns a new instance of Repository.



7
8
9
10
# File 'lib/mgit/repository.rb', line 7

def initialize(name, path)
  @name = name
  @path = path
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/mgit/repository.rb', line 5

def name
  @name
end

#pathObject (readonly)

Returns the value of attribute path.



5
6
7
# File 'lib/mgit/repository.rb', line 5

def path
  @path
end

Instance Method Details

#current_branchObject



12
13
14
# File 'lib/mgit/repository.rb', line 12

def current_branch
  in_repo { `git rev-parse --abbrev-ref HEAD` }
end

#dirty?Boolean

Returns:

  • (Boolean)


64
65
66
# File 'lib/mgit/repository.rb', line 64

def dirty?
  [:index, :dirty, :untracked].any? { |f| flags.include?(f) }
end

#divergenceObject



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/mgit/repository.rb', line 48

def divergence
  divergence = []
  status_lines do |s|
    if s.split[0] == '##'
      if(m = /## ([\w,\/]+)\.\.\.([\w,\/]+) \[(\w+) (\d+)\]/.match(s))
        if m[3] =~ /behind/
          divergence << { :behind => { :branch => m[2], :by => m[4] } }
        else
          divergence << { :ahead => { :branch => m[2], :by => m[4] } }
        end
      end
    end
  end
  divergence
end

#flagsObject



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/mgit/repository.rb', line 27

def flags
  flags = Set.new
  status_lines do |s|
    case s.split[0]
    when 'A'
      flags << :index
    when 'M'
      flags << :dirty
    when '??'
      flags << :untracked
    when '##'
      if /## ([\w,\/]+)\.\.\.([\w,\/]+) \[(\w+) (\d+)\]/ =~ s
        flags << :diverged
      elsif /## HEAD \(no branch\)/ =~ s
        flags << :detached
      end
    end
  end
  flags
end

#remote_tracking_branchesObject



16
17
18
19
20
21
22
23
24
25
# File 'lib/mgit/repository.rb', line 16

def remote_tracking_branches
  a = in_repo do
    `git for-each-ref --format='%(refname:short) %(upstream:short)' refs/heads`.
      split("\n").
      map { |b| b.split(' ') }.
      reject { |b| b.size != 2 }
  end
  
  Hash[a]
end