We use a private gem in our application, which is located at a private gem server.
There is no access to that gem server outside of VPC.
We put them into a group called “private” and tell circleci bundler to ignore that group. circleci.yml:
This might be a post you wrote on Stackoverflow, since your names are similar. I’m just reposting the workaround here for anyone else with this problem. Using this in the Gemfile will ensure the gem is ignored on CircleCI:
if !ENV['CIRCLECI']
source 'http://your-private-address' do
gem 'your_private_gem'
end
end