Class: Raykit::Project

Inherits:
Object
  • Object
show all
Defined in:
lib/raykit/project.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeProject

Returns a new instance of Project.



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/raykit/project.rb', line 17

def initialize()
    @verbose=false
    @timer=Raykit::Timer.new
    @remote=''
    @commit_message_filename="commit_message.tmp"
    if(Dir.exist?(RAKE_DIRECTORY))
        @directory=RAKE_DIRECTORY
        if(Dir.exist?("#{RAKE_DIRECTORY}/.git") && Dir.exist?(@directory))
            @git_directory=Raykit::Git::Directory.new(@directory)
            @remote=@git_directory.remote
        end
    else
        @directory=''
        #@remote=''

    end

    @log=Log.new("#{RAKE_DIRECTORY}/tmp/raykit.log")

    if(defined?(NAME))
        @name=NAME 
    else
        slns = Dir.glob("*.sln")
        if(slns.length == 1)
            @name=slns[0].gsub('.sln','')
        else
            remote_parts = @remote.split('/')
            if(remote_parts.length > 0)
                @name=remote_parts[-1].gsub('.git','')
            end
        end
    end
    #@version=Raykit::Version.detect(@name,@verbose)

    @repository=Raykit::Git::Repository.new(@remote)
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



6
7
8
# File 'lib/raykit/project.rb', line 6

def name
  @name
end

#timerObject

Returns the value of attribute timer.



7
8
9
# File 'lib/raykit/project.rb', line 7

def timer
  @timer
end

#verboseObject

Returns the value of attribute verbose.



8
9
10
# File 'lib/raykit/project.rb', line 8

def verbose
  @verbose
end

Instance Method Details

#branchObject



63
64
65
# File 'lib/raykit/project.rb', line 63

def branch
    @git_directory.branch
end

#commitObject



179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# File 'lib/raykit/project.rb', line 179

def commit
    Dir.chdir(@directory) do
        if(File.exist?('.gitignore'))
            status=`git status`
            if(status.include?('Changes not staged for commit:'))
                run("git add --all")
                if(GIT_DIRECTORY.outstanding_commit?)
                    if(File.exist?(@commit_message_filename))
                        run("git commit --file #{@commit_message_filename}")
                        File.delete(@commit_message_filename)
                    else
                        run("git commit -m'update'")
                    end
                end  
            end
        else
            puts "warning: .gitignore not found."
        end
    end
    self
end

#commit_message_filenameObject



175
176
177
# File 'lib/raykit/project.rb', line 175

def commit_message_filename
    @commit_message_filename
end

#directoryObject



60
61
62
# File 'lib/raykit/project.rb', line 60

def directory
    @directory
end

#elapsedObject



142
143
144
145
146
147
148
149
# File 'lib/raykit/project.rb', line 142

def elapsed
    elapsed=@timer.elapsed
    if(elapsed < 1.0)
        "%.1f" % (@timer.elapsed) + "s"
    else
        "%.0f" % (@timer.elapsed) + "s"
    end
end

#get_dev_dir(subdir) ⇒ Object



52
53
54
# File 'lib/raykit/project.rb', line 52

def get_dev_dir(subdir)
    Raykit::Environment::get_dev_dir(subdir)
end

#has_diff?(filename) ⇒ Boolean

Returns:

  • (Boolean)


84
85
86
87
88
89
# File 'lib/raykit/project.rb', line 84

def has_diff?(filename)
    Dir.chdir(@directory) do
        text=`git diff #{filename}`.strip
        return true if(text.length > 0) 
    end    
end

#infoObject



151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/raykit/project.rb', line 151

def info
    ljust=35
    puts ''
    puts "PROJECT.name".ljust(ljust) + Rainbow(PROJECT.name).yellow.bright
    puts "PROJECT.version".ljust(ljust) + Rainbow(PROJECT.version).yellow.bright
    puts "PROJECT.remote".ljust(ljust) + Rainbow(PROJECT.remote).yellow.bright
    puts "PROJECT.branch".ljust(ljust) + Rainbow(PROJECT.branch).yellow.bright
    puts "PROJECT.latest_tag".ljust(ljust) + Rainbow(PROJECT.latest_tag).yellow.bright
    puts "PROJECT.latest_tag_commit".ljust(ljust) + Rainbow(PROJECT.latest_tag_commit).yellow.bright
    puts "PROJECT.latest_commit".ljust(ljust) + Rainbow(PROJECT.latest_commit).yellow.bright
    puts "PROJECT.last_modified_filename".ljust(ljust) + Rainbow(PROJECT.last_modified_filename).yellow.bright
    #puts "PROJECT.elapsed".ljust(ljust) + Rainbow(PROJECT.elapsed).yellow.bright

    puts "PROJECT.size".ljust(ljust) + Rainbow(PROJECT.size).yellow.bright
    puts "PROJECT.size_pack".ljust(ljust) + Rainbow(PROJECT.size_pack).yellow.bright
    puts ''
    self
end

#last_modified_filenameObject



114
115
116
117
118
# File 'lib/raykit/project.rb', line 114

def last_modified_filename
    Dir.chdir(@directory) do
        Dir.glob("**/*.*").select{|f| File.file?(f)}.max_by {|f| File.mtime(f)}
    end
end

#latest_commitObject

latest local commit



68
69
70
71
72
73
74
# File 'lib/raykit/project.rb', line 68

def latest_commit
    Dir.chdir(@directory) do
        text=`git log -n 1`
        scan=text.scan(/commit ([\w]+)\s/)
        return scan[0][0].to_s 
    end
end

#latest_tagObject



102
103
104
# File 'lib/raykit/project.rb', line 102

def latest_tag
    `git describe  --abbrev=0`.strip
end

#latest_tag_commitObject



106
107
108
# File 'lib/raykit/project.rb', line 106

def latest_tag_commit
    `git show-ref -s #{latest_tag}`.strip
end

#logObject



56
57
58
# File 'lib/raykit/project.rb', line 56

def log
    @log
end

#outstanding_commit?Boolean

Returns:

  • (Boolean)


76
77
78
79
80
81
82
# File 'lib/raykit/project.rb', line 76

def outstanding_commit?
    Dir.chdir(@directory) do
        text=`git diff`.strip
        return true if(text.length > 0)
    end
    false
end

#pullObject



213
214
215
216
217
218
# File 'lib/raykit/project.rb', line 213

def pull
    Dir.chdir(@directory) do
        run('git pull')
    end
    self
end

#pushObject



201
202
203
204
205
206
207
208
209
210
211
# File 'lib/raykit/project.rb', line 201

def push
    Dir.chdir(@directory) do
        status=`git status`
        if(status.include?('use "git push"'))
            run('git push')
            
            #run('git push --tags')

        end
    end
    self
end

#remoteObject



110
111
112
# File 'lib/raykit/project.rb', line 110

def remote
    @remote
end

#run(command, quit_on_failure = true) ⇒ Object



241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/raykit/project.rb', line 241

def run(command,quit_on_failure=true) 
    log.update_command_time(command,DateTime.now)
    if(command.kind_of?(Array))
        command.each{|subcommand| run(subcommand,quit_on_failure)}
    else
        cmd = Command.new(command)
        cmd.summary
        elapsed_str = Timer.get_elapsed_str(cmd.elapsed,0)
        if(cmd.exitstatus == 0)
            #puts elapsed_str + " " +  Rainbow(cmd.command).yellow.bright

            #return elapsed_str + " " + cmd.command

        else
            # display error details

            puts cmd.output
            puts cmd.error
            puts
            if(quit_on_failure)
                abort Rainbow(elapsed_str).red.bright + " " +  Rainbow(cmd.command).white
            end
        end
        cmd
    end
end

#sizeObject



120
121
122
123
124
125
126
127
128
129
# File 'lib/raykit/project.rb', line 120

def size 
    Dir.chdir(@directory) do
        text =`git count-objects -v -H`
        if matches = text.match(/size: ([. \w]+)$/)
            matches[1]
        else
            text
        end
    end
end

#size_packObject



131
132
133
134
135
136
137
138
139
140
# File 'lib/raykit/project.rb', line 131

def size_pack
    Dir.chdir(@directory) do
        text =`git count-objects -v -H`
        if matches = text.match(/size-pack: ([. \w]+)$/)
            matches[1]
        else
            text
        end
    end
end

#summaryObject



169
170
171
172
173
# File 'lib/raykit/project.rb', line 169

def summary
    info if(@verbose)
    
    puts "[" + elapsed + "] " + Rainbow(@name).yellow.bright + " " + Rainbow(version).yellow.bright
end

#tagObject



220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# File 'lib/raykit/project.rb', line 220

def tag
    Dir.chdir(@directory) do
        specific_tag=`git tag -l #{@version}`.strip
        puts Rainbow("git tag - #{@version}").green if(@verbose)
        puts `git tag -l #{@version}` if(@verbose)
        if(specific_tag.length == 0)
            puts "tag #{@version} not detected." if(@verbose)
            tag = `git describe --abbrev=0 --tags`.strip
            if(@version != tag)
                puts "latest tag #{@tag}" if(@verbose)
                run("git tag #{@version} -m'#{@version}'")
                run("git push origin #{@version}")
                #push

            end
        else
            puts "already has tag #{specific_tag}" if(@verbose)
        end
    end
    self
end

#update_versionObject



98
99
100
# File 'lib/raykit/project.rb', line 98

def update_version
    @version=Raykit::Version.detect(@name,@verbose)
end

#versionObject



91
92
93
94
95
96
# File 'lib/raykit/project.rb', line 91

def version
    if(@version.nil?)
        @version=Raykit::Version.detect(@name,@verbose)
    end
    @version
end