puppet-modulesync-configs/Gemfile
Alex Schultz aded95a8b9 Add json_pure requirement
Since the puppet gem has dropped the json_pure requirement (since
5.0.0), the modulesync jobs are failing because the json_pure module is
missing. This change adds it here to unstick the CI for cookiecutter and
modulesync jobs.

Also temporarily disable the unit test jobs until the cookiecutter
module is fixed for puppet5

Change-Id: Ibaf5f73edef980d83bb02d1e969912f33cf056fa
2017-07-05 14:53:09 -06:00

11 lines
362 B
Ruby

source 'https://rubygems.org'
# TODO(aschultz): 0.8.x doesn't seem to work recursively, needs investigation
gem 'modulesync', ['>=0.6.0','<0.8.0']
# TODO(aschultz): techincally modulesync needs json which was satisfied by
# puppet previously, but since 5.0.0 they dropped that dependency which has
# broken the jobs that use this
gem 'json_pure'
# vim:ft=ruby