Add json gem

The puppet_facts gem implicitly depends on the json gem.
On Ruby 1.8.7, json is not built in. On Puppet 2.7, it is
not explicitly pulled in by the hiera gem. So we add it
here explicitly.
This commit is contained in:
Colleen Murphy 2014-12-08 22:52:17 -08:00
parent 113cb70ee2
commit 7e6eba5d34

View file

@ -7,6 +7,7 @@ group :development, :unit_tests do
gem 'puppet-lint', :require => false
gem 'simplecov', :require => false
gem 'puppet_facts', :require => false
gem 'json', :require => false
end
group :system_tests do