Sha256: 8ce37700f6768cd42527229eb724fb312bfd30a95fa75799712eca813de667b8
Contents?: true
Size: 341 Bytes
Versions: 14
Compression:
Stored size: 341 Bytes
Contents
module Sprout module Executable ## # A parameter with a String value. # # Any spaces in the value will be escaped when # returned to a shell. # # @see Sprout::Executable::Param # class StringParam < Executable::Param def shell_value value.gsub(/ /, '\ ') end end end end
Version data entries
14 entries across 14 versions & 1 rubygems