Skip to content

Commit 1ea5d3d

Browse files
committed
add rspec support for 3.x
1 parent 6020b59 commit 1ea5d3d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Gemfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@ source 'https://rubygems.org'
22

33
gemspec
44

5-
%w[rspec rspec-core rspec-expectations rspec-mocks rspec-support].each do |lib|
5+
%w[rspec rspec-core rspec-expectations rspec-mocks].each do |lib|
66
library_path = File.expand_path("../../#{lib}", __FILE__)
77
if File.exist?(library_path)
88
gem lib, :path => library_path
99
else
10-
gem lib, :git => "git://github.com/rspec/#{lib}.git", :branch => ENV.fetch('BRANCH',"master") unless lib == 'rspec-support'
10+
gem lib, :git => "git://github.com/rspec/#{lib}.git",
11+
:branch => ENV.fetch('BRANCH',"master")
1112
end
1213
end
1314

15+
# only the master branche is supported on rspec-support
16+
gem "rspec-support", :git => "git://github.com/rspec/rspec-support.git"
17+
1418
gem "cucumber", "~> 1.1.9"
1519
gem "aruba", "~> 0.5"
1620
gem "rake", "~> 10.0.0"

0 commit comments

Comments
 (0)