Class: Git

Inherits:
Object
  • Object
show all
Defined in:
lib/git.rb,
lib/commands/git.rb

Class Method Summary collapse

Class Method Details

.branchObject



5
6
7
8
9
10
11
12
13
14
# File 'lib/git.rb', line 5

def self.branch directory=''
    directory=Dir.pwd if directory.length == 0
    Dir.chdir(directory) do
    begin
      `git branch`.scan(/\* ([.\w-]+)/)[0][0] if(File.exists?('.git'))
      rescue
       ''
      end
    end
end

.clone_and_reset(uri, directory, tagname) ⇒ Object



100
101
102
103
104
105
106
107
# File 'lib/git.rb', line 100

def self.clone_and_reset uri, directory, tagname
    if(!File.exists?(directory))
        `git clone #{uri} #{directory}`
        Dir.chdir(directory) do
            `git reset --hard #{tagname}`
        end
    end
end

.has_changes?(directory = '') ⇒ Boolean

Returns:

  • (Boolean)


29
30
31
32
33
34
35
36
37
38
# File 'lib/git.rb', line 29

def self.has_changes? directory=''
    directory=Dir.pwd if directory.length==0
    Dir.chdir(directory) do
        if(File.exists?('.git'))
            return true if `git status`.include?('modified:')
            return true if `git status`.include?('new file:')
        end
    end
    false
end

.init(directory = '') ⇒ Object



40
41
42
43
44
45
46
47
48
# File 'lib/git.rb', line 40

def self.init directory=''
    directory=Dir.pwd if directory.length==0
    parent=File.dirname(directory)
    FileUtils.mkdir_p parent if !File.exists?(parent) && parent.length > 0
    Dir.chdir(parent) do
       `git init --bare`

    end
end

.publish(destination, source_dir, source_filelist, tag) ⇒ Object



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
98
# File 'lib/git.rb', line 67

def self.publish destination, source_dir, source_filelist, tag
    puts "publish to #{destination}"
    tmp_dir=Dir.mktmpdir
    FileUtils.mkdir_p(File.dirname(tmp_dir)) if(!File.exists?(File.dirname(tmp_dir)))
    FileUtils.rm_r(tmp_dir) if File.exists?(tmp_dir)
    puts `git clone #{destination} #{tmp_dir}`

    puts "checking if tag #{tag} exists..."
    Dir.chdir(tmp_dir) do
        tags=`git tag`
        if(tags.include?(tag))
            puts "tag #{tag} already exists."
        else
            puts "tag #{tag} does not exist."
            Dir.chdir(source_dir) do
                source_filelist.each{|f|
                    dest = tmp_dir + "/" + f
                    FileUtils.mkdir_p(File.dirname(dest)) if(!File.exists?(File.dirname(dest)))
                    FileUtils.cp(f,dest);
                    puts "copying file #{f} for publishing"
                }
            end
            puts 'git add -A'
            puts `git add -A`
            puts 'git commit -m"add"'
            puts `git commit -m"add"`
            Git.tag tmp_dir,tag
        end
    end

    FileUtils.rm_r tmp_dir
end

.remote_origin(directory = '') ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/git.rb', line 16

def self.remote_origin directory=''
  url=''
  directory=Dir.pwd if directory.length == 0
  Dir.chdir(directory) do
    begin
      url=`git remote show origin`.scan(/Fetch URL: ([\.\-:\/\w\d]+)/)[0][0] if(File.exists?('.git'))
    rescue
      url=''
    end
  end
  url
end

.tag(directory, version) ⇒ Object



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/git.rb', line 50

def self.tag directory,version
    directory=Dir.pwd if directory.length == 0
    Dir.chdir(directory) do
        `git pull`
        tags=`git tag`
        if(!tags.include?(version))
            puts 'tagging branch'
            puts `git tag #{version} -m'#{version}'`
            puts 'committing'
            puts `git commit -m'#{version}'`
            puts 'pushing'
            puts `git push --tags`
            puts `git push`
        end
    end
end