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:30 -08:00
parent 638b9c5704
commit e8708f25d8

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