Class: Libro
- Inherits:
-
Referencia
- Object
- Referencia
- Libro
- Defined in:
- lib/refbiblio/libro.rb
Overview
require “./referencia.rb”
Instance Attribute Summary
Attributes inherited from Referencia
#autor, #nombre, #tipo_doc, #titulo
Instance Method Summary collapse
-
#initialize(nombre = {}, &block) ⇒ Libro
constructor
El constructor recibe un bloque y llama a los metodos que se encuentran en Referencia.
Methods inherited from Referencia
#<=>, #aut, #tipodoc, #tit, #to_s
Constructor Details
#initialize(nombre = {}, &block) ⇒ Libro
El constructor recibe un bloque y llama a los metodos que se encuentran en Referencia.
21 22 23 24 25 26 27 28 |
# File 'lib/refbiblio/libro.rb', line 21 def initialize(nombre={},&block) #super(autor,titulo,tipo_doc,nombre) self.nombre=nombre self.tipo_doc=[] self.autor=[] self.titulo=[] instance_eval &block end |