Sha256: 60eac3c4b6ad567ddd7971315e315e0e5aa44f57be52e2b565fe0a186dd6e591

Contents?: true

Size: 498 Bytes

Versions: 19

Compression:

Stored size: 498 Bytes

Contents

module VagrantPlugins
  module Cachier
    module Cap
      module Linux
        module RvmPath
          def self.rvm_path(machine)
            rvm_path = nil
            machine.communicate.tap do |comm|
              return unless comm.test('rvm info')
              comm.execute 'echo $rvm_path' do |buffer, output|
                rvm_path = output.chomp if buffer == :stdout
              end
            end
            return rvm_path
          end
        end
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
vagrant-cachier-1.2.1 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-1.2.0 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-1.1.0 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-1.0.0 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.9.0 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.8.0 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.7.2 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.7.1 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.7.0 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.6.0 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.5.1 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.5.0 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.4.1 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.4.0 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.3.3 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.3.2 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.3.1 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.3.0 lib/vagrant-cachier/cap/linux/rvm_path.rb
vagrant-cachier-0.2.0 lib/vagrant-cachier/cap/linux/rvm_path.rb