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



126
127
128
129
130
131
132
133
# File 'lib/apps/git.rb', line 126

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

.copy(src_url, src_directory, branch, target_directory, filelist) ⇒ Object



149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# File 'lib/apps/git.rb', line 149

def self.copy(src_url,src_directory,branch,target_directory,filelist)
    if(!File.exists?(src_directory))
        puts "git clone #{src_url} #{src_directory}"
        puts `git clone #{src_url} #{src_directory}`
    else
        puts "chdir #{src_directory}"
        Dir.chdir(src_directory) do
            puts "git pull"
            git_pull=Command.new('git pull')
            git_pull[:directory]=src_directory
            git_pull[:timeout] = 30
            git_pull[:ignore_failure] =true
            git_pull.execute
            
        end
    end

    puts "chdir #{src_directory}"
    Dir.chdir(src_directory) do
        puts "git checkout #{branch}"
        puts `git checkout #{branch}`
        filelist.each{|f|
            dest="#{target_directory}/#{f}"
            FileUtils.mkdir_p File.dirname(dest) if !File.exists? File.dirname(dest)
            puts "copying #{f} to #{dest}"
            FileUtils.cp(f,dest)
        }
    end
end

.has_changes?(directory = '') ⇒ Boolean

Returns:

  • (Boolean)


55
56
57
58
59
60
61
62
63
64
# File 'lib/apps/git.rb', line 55

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



66
67
68
69
70
71
72
73
74
# File 'lib/apps/git.rb', line 66

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



135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/apps/git.rb', line 135

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



93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/apps/git.rb', line 93

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



42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/apps/git.rb', line 42

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



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/apps/git.rb', line 76

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



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

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

.user_emailObject



22
23
24
25
26
27
28
29
30
# File 'lib/apps/git.rb', line 22

def self.user_email
    email=''
    begin
        email=`git config --list`.scan(/user.email=([\d\w.@\-\+]+)/)[0][0]
    rescue
        email=''
    end
    email
end

.user_nameObject



32
33
34
35
36
37
38
39
40
# File 'lib/apps/git.rb', line 32

def self.user_name
    name=''
    begin
        name=`git config --list`.scan(/user.name=([\d\w.@\-\+]+)/)[0][0]
    rescue
        name=''
    end
    name
end