Method: Object.lev_handler

Defined in:
lib/lev/object.rb

.lev_handler(options = {}) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
# File 'lib/lev/object.rb', line 31

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