class Amun::Object
an object wrapping event manager inside it and exposing every method to the public this way you can have this object and switch behavior and states by switching internal event manager instances, for example you can have a mode that switch between normal and insert mode (ahem ahmed VIM style)
Attributes
events[RW]
Public Class Methods
new()
click to toggle source
# File lib/amun/object.rb, line 17 def initialize @events = EventManager.new end