class Daemons::ApplicationGroup

def running?

Check whether at least one of the applications in the group is running. If yes, return true.
def running?
  @applications.each { |a| return true if a.running? }
  return false
end