Method: Tap::Root#expand

Defined in:
lib/tap/root.rb

#expand(path) ⇒ Object

Stringifies and expands the path relative to self. Paths are turned into strings using to_s.



41
42
43
# File 'lib/tap/root.rb', line 41

def expand(path)
  File.expand_path(path.to_s, @path_root)
end