From 4a8c712af3af3a0e1d927494795c6860b4aa9bc9 Mon Sep 17 00:00:00 2001 From: cczona Date: Sun, 25 Sep 2011 18:19:39 -0700 Subject: [PATCH] Requires section updated for Ruby 1.9 --- README | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README b/README index f202fa5e..21244791 100644 --- a/README +++ b/README @@ -46,9 +46,12 @@ your log query, which can be constructed through methods on the Git::Log object, Here are a bunch of examples of how to use the Ruby/Git package. -First you have to remember to require rubygems if it's not. Then include the 'git' gem. +(Only if Ruby < 1.9) Start by requiring rubygems. require 'rubygems' + +Include the 'git' gem. + require 'git' Here are the operations that need read permission only.