class MiGA::Daemon

def daemon_home(project)

full path to the project's 'daemon' folder
Daemon's home inside the MiGA::Project +project+ or a String with the
#
def daemon_home(project)
  return project if project.is_a? String
  File.join(project.path, 'daemon')
end