From cefb61cfb2cb81807dca8001dbe132c9115a19d6 Mon Sep 17 00:00:00 2001
From: David Chelimsky <dchelimsky@gmail.com>
Date: Fri, 22 Oct 2010 07:58:45 -0500
Subject: [PATCH] update dependencies across development repos

---
 Gemfile | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Gemfile b/Gemfile
index f7af74fe..590a6cc5 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,6 +1,7 @@
 source :rubygems
 
 gem "rake"
-gem "rspec-core", :path => "../rspec-core"
-gem "rspec-expectations", :path => "../rspec-expectations"
-gem "rspec-mocks", :path => "../rspec-mocks"
+
+%w[rspec-core rspec-expectations rspec-mocks].each do |lib|
+  gem lib, :path => File.expand_path("../../#{lib}", __FILE__)
+end