class OmfRcShm::App

Attributes

default_groups[RW]
definitions[RW]
watchdog[RW]

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/omf_rc_shm/app.rb, line 15
def initialize
  super
  @definitions ||= Hash.new
  @watchdog = nil
  @default_groups = []
end

Public Instance Methods

load_definition(file_path) click to toggle source
# File lib/omf_rc_shm/app.rb, line 22
def load_definition(file_path)
  eval(File.read(file_path))
end