Skip to content

Commit

Permalink
pin rspec-support
Browse files Browse the repository at this point in the history
  • Loading branch information
JonRowe committed Nov 22, 2020
1 parent d4de1e2 commit 7c3dd3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ source "https://rubygems.org"
gemspec

branch = File.read(File.expand_path("../maintenance-branch", __FILE__)).chomp
%w[rspec rspec-core rspec-mocks rspec-support].each do |lib|
%w[rspec rspec-core rspec-mocks].each do |lib|
library_path = File.expand_path("../../#{lib}", __FILE__)
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
end
gem "rspec-support", :git => "https://github.com/rspec/rspec-support.git", :branch => "fix-jruby-ripper"
end

if RUBY_VERSION < '1.9.3'
Expand Down

0 comments on commit 7c3dd3e

Please sign in to comment.