Method: Object.lev_handler

Defined in:
lib/lev/object.rb

.lev_handler(options = {}) ⇒ Object



37
38
39
40
41
42
43
44
45
46
47
# File 'lib/lev/object.rb', line 37

def self.lev_handler(options={})
  class_eval do
    include Lev::Handler
  end

  # Do routine configuration
  options[:skip_routine_include] = true
  lev_routine(options)

  # Do handler configuration (none currently)
end