diff --git a/Gemfile b/Gemfile index 2412ed245..8acce49c0 100644 --- a/Gemfile +++ b/Gemfile @@ -8,7 +8,11 @@ branch = File.read(File.expand_path("../maintenance-branch", __FILE__)).chomp if File.exist?(library_path) && !ENV['USE_GIT_REPOS'] gem lib, :path => library_path else - gem lib, :git => "https://github.com/rspec/#{lib}.git", :branch => branch + if lib == 'rspec' + gem 'rspec', :git => "https://github.com/rspec/rspec-metagem.git", :branch => branch + else + gem lib, :git => "https://github.com/rspec/#{lib}.git", :branch => branch + end end end