bantic-integrity 0.1.4 → 0.1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/integrity.gemspec +1 -1
- data/lib/integrity/project.rb +8 -4
- data/views/home.haml +5 -1
- metadata +1 -1
data/integrity.gemspec
CHANGED
data/lib/integrity/project.rb
CHANGED
@@ -24,10 +24,14 @@ module Integrity
|
|
24
24
|
def build(commit_identifier="HEAD")
|
25
25
|
return if building?
|
26
26
|
update_attributes(:started_build_at => Time.now)
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
27
|
+
Thread.new(self) do |project|
|
28
|
+
begin
|
29
|
+
Builder.new(project).build(commit_identifier)
|
30
|
+
ensure
|
31
|
+
project.update_attributes(:started_build_at => nil)
|
32
|
+
project.send_notifications
|
33
|
+
end
|
34
|
+
end
|
31
35
|
end
|
32
36
|
|
33
37
|
def building?
|
data/views/home.haml
CHANGED
@@ -12,7 +12,11 @@
|
|
12
12
|
%a{ :href => project_url(project) }&= project.name
|
13
13
|
.meta
|
14
14
|
- if project.building?
|
15
|
-
|
15
|
+
- last_build = project.last_build
|
16
|
+
- short_commit_identifier = last_build ? last_build.short_commit_identifier : "unknown commit"
|
17
|
+
- commit_message = last_build ? last_build.commit_message : "unknown commit message"
|
18
|
+
- shortened_commit_message = commit_message ? commit_message.slice(0,40) + "..." : "unknown commit message"
|
19
|
+
= "Building #{short_commit_identifier} (#{shortened_commit_message}) for #{pretty_time_since(project.started_build_at)}"
|
16
20
|
- elsif project.last_build.nil?
|
17
21
|
Never built yet
|
18
22
|
- else
|