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