Sha256: 1536175eb0a5502cbe545cf5dd85740e1a53dd7eb8e315730350baf688b27408
Contents?: true
Size: 443 Bytes
Versions: 6
Compression:
Stored size: 443 Bytes
Contents
class Array def startApplications if !self.empty? && self.all? { |v| v.class == OmfEc::Group } self.each { |g| g.startApplications } end end def stopApplications if !self.empty? && self.all? { |v| v.class == OmfEc::Group } self.each { |g| g.stopApplications } end end def exec(name) if !self.empty? && self.all? { |v| v.class == OmfEc::Group } self.each { |g| g.exec(name) } end end end
Version data entries
6 entries across 6 versions & 1 rubygems