module Roda::RodaPlugins::Base::ClassMethods

def expand_path(path, root=opts[:root])

Expand the given path, using the root argument as the base directory.
def expand_path(path, root=opts[:root])
  ::File.expand_path(path, root)
end