[show output of --list-libraries in YAML format.
John Meacham <john@repetae.net>**20090826022745
 Ignore-this: c752ccdde9a382715dce04664bdfe076
] hunk ./src/Ho/Library.hs 104
-    putStrLn "Search path:"
-    mapM_ putStrLn (optHlPath options)
-    putStrLn "Libraries found:"
+    putStrLn "SearchPath:"
+    mapM_ (putStrLn . (" - " ++)) (optHlPath options)
+    putStrLn "Libraries:"
hunk ./src/Ho/Library.hs 109
-    forM_ (sortBy nameComp $ Map.elems byhashes) $ \ lib -> putStrLn (libName lib)
+    forM_ (sortBy nameComp $ Map.elems byhashes) $ \ lib -> do
+        putStrLn " -"
+        let f n v = putStrLn ("  " ++ n ++ ": " ++ v)
+        f "Name" (libName lib)
+        f "Hash" (show $ libHash lib)
+--        f "Modules" (show $ libModules lib)