Class: Ernie::Mod

Inherits:
Object
  • Object
show all
Defined in:
lib/ernie.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ Mod

Returns a new instance of Mod.



202
203
204
205
# File 'lib/ernie.rb', line 202

def initialize(name)
  self.name = name
  self.funs = {}
end

Instance Attribute Details

#funsObject

Returns the value of attribute funs.



200
201
202
# File 'lib/ernie.rb', line 200

def funs
  @funs
end

#nameObject

Returns the value of attribute name.



200
201
202
# File 'lib/ernie.rb', line 200

def name
  @name
end

Instance Method Details

#fun(name, block) ⇒ Object

Raises:

  • (TypeError)


207
208
209
210
# File 'lib/ernie.rb', line 207

def fun(name, block)
  raise TypeError, "block required" if block.nil?
  self.funs[name] = block
end