From d65bbfbe8d26fd4eb6fa2bedb49de7b1187d2cd3 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Wed, 2 Jan 2013 01:28:37 -0800 Subject: [PATCH] Update README.md --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0e1d02ff..58cdc7a1 100644 --- a/README.md +++ b/README.md @@ -32,10 +32,11 @@ The Language Graph you see on every repository is built by aggregating the langu The repository stats API can be used on a directory: - project = Linguist::Repository.from_directory(".") - project.language.name #=> "Ruby" - project.languages #=> { "Ruby" => 0.98, - "Shell" => 0.02 } +```ruby +project = Linguist::Repository.from_directory(".") +project.language.name #=> "Ruby" +project.languages #=> { "Ruby" => 0.98, "Shell" => 0.02 } +``` These stats are also printed out by the binary. Try running `linguist` on itself: