Sha256: d34797bde16f2b33c6b274a0969a6cb832587a2de8731df71c035a6285f107fa

Contents?: true

Size: 374 Bytes

Versions: 63

Compression:

Stored size: 374 Bytes

Contents

module Vagrant
  module Util
    module ShellQuote
      # This will auto-escape the text with the given quote mark type.
      #
      # @param [String] text Text to escape
      # @param [String] quote The quote character, such as "
      def self.escape(text, quote)
        text.gsub(/#{quote}/) do |m|
          "#{m}\\#{m}#{m}"
        end
      end
    end
  end
end

Version data entries

63 entries across 56 versions & 8 rubygems

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