Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/filepath/core_ext/string.rb
Instance Method Summary collapse
-
#as_path ⇒ FilePath
Generates a path from a String.
Instance Method Details
#as_path ⇒ FilePath
Note:
FIXME: #as_path should be #to_path but that method name
is already used
Generates a path from a String.
"/a/b/c".as_path is equivalent to FilePath.new("/a/b/c").
19 20 21 |
# File 'lib/filepath/core_ext/string.rb', line 19 def as_path FilePath.new(self) end |