class Pathname

Public Instance Methods

join(*args) click to toggle source
# File lib/mystic/extensions.rb, line 105
def join *args
        Pathname.new(File.join @path, *args.map(&:to_s))
end
relative?() click to toggle source
# File lib/mystic/extensions.rb, line 101
def relative?
  @path[0] != File::SEPARATOR
end
to_s() click to toggle source
# File lib/mystic/extensions.rb, line 97
def to_s
        @path
end