Class: Datos
- Inherits:
-
Object
- Object
- Datos
- Defined in:
- lib/alimentos/antropometricos.rb
Overview
Esta clase representa los Datos personales de una persona x
Direct Known Subclasses
Instance Attribute Summary collapse
-
#dni ⇒ Object
readonly
Returns the value of attribute dni.
-
#nombre ⇒ Object
readonly
Returns the value of attribute nombre.
Instance Method Summary collapse
-
#initialize(nombre, dni) ⇒ Datos
constructor
A new instance of Datos.
- #to_s ⇒ Object
Constructor Details
#initialize(nombre, dni) ⇒ Datos
Returns a new instance of Datos.
8 9 10 11 |
# File 'lib/alimentos/antropometricos.rb', line 8 def initialize(nombre,dni) @nombre=nombre @dni=dni end |
Instance Attribute Details
#dni ⇒ Object (readonly)
Returns the value of attribute dni.
6 7 8 |
# File 'lib/alimentos/antropometricos.rb', line 6 def dni @dni end |
#nombre ⇒ Object (readonly)
Returns the value of attribute nombre.
6 7 8 |
# File 'lib/alimentos/antropometricos.rb', line 6 def nombre @nombre end |
Instance Method Details
#to_s ⇒ Object
13 14 15 |
# File 'lib/alimentos/antropometricos.rb', line 13 def to_s "#{nombre}\n#{dni}" end |