about summary refs log tree commit diff
path: root/lib/jitterbug.pm
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-04-28 14:19:00 -0700
committerJonathan "Duke" Leto <jonathan@leto.net>2011-04-28 14:19:00 -0700
commitde44fb9427035c2684d5b0882ae9caa4c621d86f (patch)
tree3cfb4b5a1c7b8f3f77baf4867c58561bb11ef4db /lib/jitterbug.pm
parentAdd a link from the project page back to the dashboard, fixes #39 (diff)
downloadjitterbug-de44fb9427035c2684d5b0882ae9caa4c621d86f.tar.gz
Show the author of the latest commit on the dashboard, fixes #40
Diffstat (limited to '')
-rw-r--r--lib/jitterbug.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/jitterbug.pm b/lib/jitterbug.pm
index 1bf3aab..0febc01 100644
--- a/lib/jitterbug.pm
+++ b/lib/jitterbug.pm
@@ -39,7 +39,9 @@ sub _get_projects {
 
         if ($last_commit) {
             # XXX see what data to store here
-            $proj_desc->{last_build} = from_json($last_commit->content);
+            my $json = from_json($last_commit->content);
+            $proj_desc->{last_build}        = $json;
+            $proj_desc->{last_build_author} = $json->{author}{name};
         }
 
         push @projects, $proj_desc;