Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/heroku/helpers.rb
Instance Method Summary (collapse)
Instance Method Details
- (Object) shellescape
224 225 226 |
# File 'lib/heroku/helpers.rb', line 224 def shellescape empty? ? "''" : gsub(/([^A-Za-z0-9_\-.,:\/@\n])/n, '\\\\\\1').gsub(/\n/, "'\n'") end |