Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit e794359

Browse files
committed
Temporarily pin rspec-core and rspec-support
1 parent 1538ee7 commit e794359

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ source "https://rubygems.org"
33
gemspec
44

55
branch = File.read(File.expand_path("../maintenance-branch", __FILE__)).chomp
6-
%w[rspec rspec-core rspec-expectations rspec-support].each do |lib|
6+
%w[rspec rspec-expectations].each do |lib|
77
library_path = File.expand_path("../../#{lib}", __FILE__)
88
if File.exist?(library_path) && !ENV['USE_GIT_REPOS']
99
gem lib, :path => library_path
1010
else
1111
gem lib, :git => "https://github.com/rspec/#{lib}.git", :branch => branch
1212
end
1313
end
14+
gem "rspec-core", :git => "https://github.com/rspec/rspec-core.git", :branch => "update-travis-build-scripts-2019-12-26-for-master"
15+
gem "rspec-support", :git => "https://github.com/rspec/rspec-support.git", :branch => "update-travis-build-scripts-2019-12-26-for-master"
1416

1517
gem 'yard', '~> 0.9.12', :require => false
1618

script/clone_all_rspec_repos

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ if is_mri; then
99
pushd ..
1010

1111
clone_repo "rspec"
12-
clone_repo "rspec-core"
12+
travis_retry eval "git clone https://github.com/rspec/rspec-core --depth 1 --branch update-travis-build-scripts-2019-12-26-for-master"
1313
clone_repo "rspec-expectations"
1414
clone_repo "rspec-mocks"
1515
clone_repo "rspec-rails"
1616

1717
if rspec_support_compatible; then
18-
clone_repo "rspec-support"
18+
travis_retry eval "git clone https://github.com/rspec/rspec-support --depth 1 --branch update-travis-build-scripts-2019-12-26-for-master"
1919
fi
2020

2121
popd

0 commit comments

Comments
 (0)