Class: MGit::Repository
- Inherits:
-
Object
- Object
- MGit::Repository
- Defined in:
- lib/mgit/repository.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
- #current_branch ⇒ Object
- #current_head ⇒ Object
- #dirty? ⇒ Boolean
- #divergence ⇒ Object
- #flags ⇒ Object
-
#initialize(name, path) ⇒ Repository
constructor
A new instance of Repository.
- #remote_branches ⇒ Object
- #remote_tracking_branches(upstream_exists_only = true) ⇒ Object
- #unmerged_commits(branch, upstream) ⇒ Object
Constructor Details
#initialize(name, path) ⇒ Repository
7 8 9 10 |
# File 'lib/mgit/repository.rb', line 7 def initialize(name, path) @name = name @path = path end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
5 6 7 |
# File 'lib/mgit/repository.rb', line 5 def name @name end |
#path ⇒ Object (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_branch ⇒ Object
12 13 14 15 16 17 |
# File 'lib/mgit/repository.rb', line 12 def current_branch in_repo { b = `git rev-parse --abbrev-ref HEAD 2>&1`.strip $?.exitstatus == 0 ? b : 'HEAD' } end |
#current_head ⇒ Object
19 20 21 |
# File 'lib/mgit/repository.rb', line 19 def current_head in_repo { `git rev-parse --verify --short HEAD`.strip } end |
#dirty? ⇒ Boolean
95 96 97 |
# File 'lib/mgit/repository.rb', line 95 def dirty? [:index, :dirty, :untracked].any? { |f| flags.include?(f) } end |
#divergence ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/mgit/repository.rb', line 79 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 |
#flags ⇒ Object
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/mgit/repository.rb', line 58 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_branches ⇒ Object
37 38 39 40 41 |
# File 'lib/mgit/repository.rb', line 37 def remote_branches in_repo do `git branch -r`.split("\n").map { |a| a.split(' ')[0] } end end |
#remote_tracking_branches(upstream_exists_only = true) ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/mgit/repository.rb', line 23 def remote_tracking_branches(upstream_exists_only = true) rb = remote_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 }. select { |b| !upstream_exists_only || rb.include?(b[1]) } end Hash[a] end |
#unmerged_commits(branch, upstream) ⇒ Object
43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/mgit/repository.rb', line 43 def unmerged_commits(branch, upstream) in_repo do `git log --pretty=format:"%h#%an#%s" --reverse --relative-date #{branch}..#{upstream}`. split("\n"). map { |line| line.split('#') }. map do |words| { :commit => words[0], :author => words[1], :subject => words[2..-1].join('#') } end end end |