Class: Pathname
Instance Method Summary collapse
-
#glob_escape ⇒ Object
prefix any glob-special characters in this path with backslashes.
Instance Method Details
#glob_escape ⇒ Object
prefix any glob-special characters in this path with backslashes
11 12 13 |
# File 'lib/api_hammer/glob_escape.rb', line 11 def glob_escape self.class.new(Dir.glob_escape(self.to_path)) end |