# File lib/god.rb, line 50
  def self.meddle(options = {})  
    m = Meddle.new(options)
    
    # yeild to the config file
    yield m
    
    # start event handler system
    EventHandler.start
    
    # start the timer system
    Timer.get

    # start monitoring each watch
    m.monitor
    
    # join the timer thread to we don't exit
    Timer.get.join
  end