(Maint) Use absolute path for puppet in Gemfile

This allows the use of binstubs to execute puppet from another working
directory.
This commit is contained in:
Patrick Carlisle 2013-04-01 15:22:20 -07:00
Родитель d79939d3a2
Коммит a1664c1bc7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -11,7 +11,7 @@ def location_for(place)
end
group(:development, :test) do
gem "puppet", *location_for('file://.')
gem "puppet", :path => File.dirname(__FILE__), :require => false
gem "facter", *location_for(ENV['FACTER_LOCATION'] || '~> 1.6')
gem "hiera", *location_for(ENV['HIERA_LOCATION'] || '~> 1.0')
gem "rack", "~> 1.4", :require => false