diff options
author | Henrik Lindberg <henrik.lindberg@cloudsmith.com> | 2014-06-24 23:34:07 +0200 |
---|---|---|
committer | Henrik Lindberg <henrik.lindberg@cloudsmith.com> | 2014-06-24 23:34:07 +0200 |
commit | ed5d7342458424d2e6d87a63c3bcb6898a510ba8 (patch) | |
tree | e41823d660766cd5b6a5e95d703dc74107f5fcda /Gemfile | |
parent | b04c45643bcbf56d412651bae9cfc1181341d07d (diff) | |
download | puppet-ed5d7342458424d2e6d87a63c3bcb6898a510ba8.tar.gz |
(PUP-2831) Make Puppet work with RGen 0.7.0
This updates the Gemfile to use RGen 0.7.0 (optionally).
In RGen 0.7.0 containment now works as specified, if something is
contained more than once, it moves to the last container that contains
it (by removing it as contained from all other containers). This caused
problems in the Function API where the block default Callable type was
reused for all signatures (and thus moved). There were also problems in
tests where the same type instances was contained in multiple locations.
This fixes these to use distinct instances.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ gem "puppet", :path => File.dirname(__FILE__), :require => false gem "facter", *location_for(ENV['FACTER_LOCATION'] || ['> 1.6', '< 3']) gem "hiera", *location_for(ENV['HIERA_LOCATION'] || '~> 1.0') gem "rake", "10.1.1", :require => false -gem "rgen", "0.6.5", :require => false +gem "rgen", "0.7.0", :require => false group(:development, :test) do gem "rspec", "~> 2.11.0", :require => false |