puppet-modulesync-configs/Gemfile
Takashi Kajinami ed8026f6eb Pin git to 1.14.0
Seems the latest release (1.17.2) breaks parsing in modulesync and
causes the following traceback.

/lib/modulesync/repository.rb:37:in `default_branch': undefined method
`[]' for nil:NilClass (NoMethodError)

Let's pin the package to workaround the problem until the issue is
fixed.

This makes the lint job non-voting until we merge [1], which requires
this pinning.

[1] https://review.opendev.org/876248

Change-Id: Ib6309ae8d13477eadcd4309d5be6bb7b170bfe4f
2023-03-09 06:10:37 +00:00

8 lines
101 B
Ruby

source 'https://rubygems.org'
gem 'git', '= 1.14.0'
gem 'modulesync'
gem 'json_pure'
# vim:ft=ruby