class Fi::Path

Public Class Methods

expand(*path) click to toggle source
# File lib/fi/path.rb, line 3
def self.expand(*path)
  File.expand_path File.join(*path)
end
join(*paths) click to toggle source
# File lib/fi/path.rb, line 7
def self.join(*paths)
  File.join *paths
end
split(path) click to toggle source
# File lib/fi/path.rb, line 11
def self.split(path)
  path.split '/'
end