class Rails::Paths::Path

def paths

def paths
  raise "You need to set a path root" unless @root.path
  map do |p|
    Pathname.new(@root.path).join(p)
  end
end