vagrant-cachier-ng/lib/vagrant-cachier/cap/linux/composer_path.rb
2014-07-20 21:11:20 -03:00

21 lines
540 B
Ruby

module VagrantPlugins
module Cachier
module Cap
module Linux
module ComposerPath
def self.composer_path(machine)
composer_path = nil
machine.communicate.tap do |comm|
return unless comm.test('which php')
comm.execute 'echo $HOME' do |buffer, output|
composer_path = output.chomp if buffer == :stdout
end
end
return "#{composer_path}/.composer/cache"
end
end
end
end
end
end