class Action
Attributes
id[RW]
method[RW]
method_name[RW]
opt[RW]
Public Class Methods
new(id, method_name, method, opt = {})
click to toggle source
# File lib/vimamsa/actions.rb, line 4 def initialize(id, method_name, method, opt = {}) @method_name = method_name @id = id @method = method @opt = opt $actions[id] = self end