You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
source 'https://rubygems.org' do
ruby '2.4.1'
gem 'rails', '~> 5.1.2'
end
source "https://artifactory.umn.edu/artifactory/api/gems/asr-rubygems/" do
gem "lastpassify"
end
Bundler tries to load minitest (sub-requirement of rails) from the second source server:
Gem::RemoteFetcher::FetchError: too many connection resets
(https://isen0011:[email protected]/artifactory/api/gems/asr-rubygems/gems/minitest-5.10.3.gem)
But, if I change the order of the two source statements, so the Gemfile looks like this:
source "https://artifactory.umn.edu/artifactory/api/gems/asr-rubygems/" do
gem "lastpassify"
end
source 'https://rubygems.org' do
ruby '2.4.1'
gem 'rails', '~> 5.1.2'
end
...everything installs correctly, with minitest loading from rubygems.org
repro script.
Note that I am using our internal artifactory server as a source for one of the two gems, which would need to be changed to make this work for anyone outside our organization.
The text was updated successfully, but these errors were encountered:
When I have a Gemfile that looks like this:
Bundler tries to load minitest (sub-requirement of rails) from the second source server:
But, if I change the order of the two source statements, so the Gemfile looks like this:
...everything installs correctly, with minitest loading from rubygems.org
repro script.
Note that I am using our internal artifactory server as a source for one of the two gems, which would need to be changed to make this work for anyone outside our organization.
The text was updated successfully, but these errors were encountered: