From ce0d9b9d024cfa28df4ae01773dd30b12e39d9af Mon Sep 17 00:00:00 2001 From: Joshua Nichols Date: Thu, 18 Mar 2010 23:22:29 -0400 Subject: [PATCH] Hai, pretty output. --- lib/homesick.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/homesick.rb b/lib/homesick.rb index b77d3ba..43b1fea 100644 --- a/lib/homesick.rb +++ b/lib/homesick.rb @@ -66,7 +66,9 @@ class Homesick < Thor def list inside repos_dir do Pathname.glob('*') do |home| - puts home + inside home do + say_status home, `git config remote.origin.url` + end end end end