Class: Corundum::Git

Inherits:
VersionControl show all
Defined in:
lib/corundum/version_control/git.rb

Instance Method Summary collapse

Methods inherited from VersionControl

#default_configuration

Instance Method Details

#defineObject



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/corundum/version_control/git.rb', line 32

def define
  super

  in_namespace do
    task :on_branch do
      current_branch = git("branch").grep(/^\*/).first.sub(/\*\s*/,"").chomp
      unless current_branch == branch
        fail "Current branch \"#{current_branch}\" is not #{branch}"
      end
    end

    task :not_tagged => :on_branch do
      tags = git("tag", "-l", tag)
      unless tags.empty?
        fail "Tag #{tag} already exists in branch #{branch}"
      end
    end

    task :workspace_committed => :on_branch do
      diffs = git("diff", "--stat", "HEAD")
      unless diffs.empty?
        fail "Workspace not committed:\n  #{diffs.join("  \n")}"
      end
    end

    task :gemspec_files_added => :on_branch do
      list = git(%w{ls-tree -r HEAD})
      list.map! do |line|
        line.split(/\s+/)[3]
      end

      missing = gemspec_files - list
      unless missing.empty?
        fail "Gemspec files not in version control: #{missing.join(", ")}"
      end
    end

    task :is_pulled do
      fetch = git("fetch", "--dry-run")
      unless fetch.empty?
        fail "Remote branch has unpulled changes"
      end

      remote = git("config", "--get", "branch.#{branch}.remote").first.chomp
      merge = git("config", "--get", "branch.#{branch}.merge").first.split("/").last.chomp

      ancestor = git("merge-base", branch, "#{remote}/#{merge}").first.chomp
      remote_rev = File::read(".git/refs/remotes/#{remote}/#{merge}").chomp

      unless ancestor == remote_rev
        fail "Unmerged changes with remote branch #{remote}/#{merge}\n#{ancestor.inspect}\n#{remote_rev.inspect}"
      end
    end
    task :is_checked_in => :is_pulled

    task :tag => :on_branch do
      git("tag", tag)
    end

    task :push => :on_branch do
      git("push")
    end

    task :check_in => [:push]
  end
end

#git(*args) ⇒ Object



19
20
21
22
23
# File 'lib/corundum/version_control/git.rb', line 19

def git(*args)
  result = git_command(*args).run
  result.must_succeed!
  return result.stdout.lines.to_a
end

#git_command(*args) ⇒ Object



11
12
13
14
15
16
17
# File 'lib/corundum/version_control/git.rb', line 11

def git_command(*args)
  Mattock::CommandLine.new("git", "--no-pager") do |cmd|
    args.each do |arg|
      cmd.options += [*arg]
    end
  end
end

#guess_branchObject



25
26
27
28
29
30
# File 'lib/corundum/version_control/git.rb', line 25

def guess_branch
  puts "Guessing branch - configure Git > branch"
  branch = git("branch").grep(/^\*/).first.sub(/\*\s*/,"").chomp
  puts "  Guessed: #{branch}"
  return branch
end

#resolve_configurationObject



7
8
9
# File 'lib/corundum/version_control/git.rb', line 7

def resolve_configuration
  @branch ||= guess_branch
end