Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/filepath/core_ext/string.rb

Instance Method Summary collapse

Instance Method Details

#as_pathFilepath

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").

Examples:

Filepath from a string


"/etc/ssl/certs".as_path #=> </etc/ssl/certs>

Returns:

  • (Filepath)

    a new path generated from the string



18
19
20
# File 'lib/filepath/core_ext/string.rb', line 18

def as_path
	Filepath.new(self)
end