From da717521764cd95fa1789ac703a0fe1f91e8ab8f Mon Sep 17 00:00:00 2001 From: Alexander Greim Date: Wed, 23 May 2012 13:19:57 +0300 Subject: [PATCH] LoadError is not inherited from StandardError anymore. A plain rescue doesn't work anymore. --- README.rdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rdoc b/README.rdoc index b428920..e5c2a31 100644 --- a/README.rdoc +++ b/README.rdoc @@ -22,7 +22,7 @@ In your Rakefile, load Vlad with the :scm => :git: begin require 'vlad' Vlad.load :scm => :git - rescue + rescue LoadError # do nothing end