Sha256: 314591c12a89ab0c1002a1f3d4611d3be4a388d4eccc937d2b94bb1d1371bf60

Contents?: true

Size: 434 Bytes

Versions: 56

Compression:

Stored size: 434 Bytes

Contents

require "vagrant"

module VagrantPlugins
  module Ansible
    class Helpers
      def self.expand_path_in_unix_style(path, base_dir)
        # Remove the possible drive letter, which is added
        # by `File.expand_path` when running on a Windows host
        File.expand_path(path, base_dir).sub(/^[a-zA-Z]:/, "")
      end

      def self.as_list_argument(v)
        v.kind_of?(Array) ? v.join(',') : v
      end
   end
  end
end

Version data entries

56 entries across 52 versions & 6 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/provisioners/ansible/helpers.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.3.3.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.3.2.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.19.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.18.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.16.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.14.0 plugins/provisioners/ansible/helpers.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.10.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.9.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.8.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.7.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.6.2 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.6.1 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.6.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.5.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.4.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.3.0 plugins/provisioners/ansible/helpers.rb
vagrant-unbundled-2.2.2.0 plugins/provisioners/ansible/helpers.rb