Class: Git

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

Class Method Summary collapse

Class Method Details

.branch(directory = '') ⇒ Object



7
8
9
10
11
12
13
14
15
16
# File 'lib/apps/git.rb', line 7

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



107
108
109
110
111
112
113
114
# File 'lib/apps/git.rb', line 107

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)


36
37
38
39
40
41
42
43
44
45
# File 'lib/apps/git.rb', line 36

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



47
48
49
50
51
52
53
54
55
# File 'lib/apps/git.rb', line 47

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

.latest_tag(directory = '') ⇒ Object



116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/apps/git.rb', line 116

def self.latest_tag directory=''
    if directory.length==0
        Command.output('git describe --abbrev=0 --tags').strip
        #`git describe --abbrev=0 --tags`.strip
    else
        result=''
        Dir.chdir(directory) do
            result=Command.output('git describe --abbrev=0 --tags').strip
            #result=`git describe --abbrev=0 --tags`.strip
        end
        result
    end
end

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



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
99
100
101
102
103
104
105
# File 'lib/apps/git.rb', line 74

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



23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/apps/git.rb', line 23

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



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/apps/git.rb', line 57

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

.urlObject



18
19
20
21
# File 'lib/apps/git.rb', line 18

def self.url
    url=''
    url=`git config --get remote.origin.url` if(File.exists?('.git'))
end