Class: Dieta::Dieta_edad
Instance Attribute Summary collapse
-
#datos ⇒ Object
readonly
Returns the value of attribute datos.
-
#edad ⇒ Object
readonly
Returns the value of attribute edad.
-
#platos ⇒ Object
readonly
Returns the value of attribute platos.
-
#porcentaje ⇒ Object
readonly
Returns the value of attribute porcentaje.
-
#titulo ⇒ Object
readonly
Returns the value of attribute titulo.
Instance Method Summary collapse
-
#initialize(titulo, porcentaje, platos, datos, edad) ⇒ Dieta_edad
constructor
A new instance of Dieta_edad.
Methods inherited from Dieta
#<=>, #get_desc_plato, #get_grasas, #get_hidratos, #get_plato, #get_platos, #get_porcentaje_diario, #get_proteinas, #get_titulo, #get_vct, #to_s
Constructor Details
#initialize(titulo, porcentaje, platos, datos, edad) ⇒ Dieta_edad
Returns a new instance of Dieta_edad
76 77 78 79 |
# File 'lib/dieta/dieta.rb', line 76 def initialize(titulo, porcentaje, platos, datos, edad) super(titulo, porcentaje, platos, datos) @edad = edad end |
Instance Attribute Details
#datos ⇒ Object (readonly)
Returns the value of attribute datos
75 76 77 |
# File 'lib/dieta/dieta.rb', line 75 def datos @datos end |
#edad ⇒ Object (readonly)
Returns the value of attribute edad
75 76 77 |
# File 'lib/dieta/dieta.rb', line 75 def edad @edad end |
#platos ⇒ Object (readonly)
Returns the value of attribute platos
75 76 77 |
# File 'lib/dieta/dieta.rb', line 75 def platos @platos end |
#porcentaje ⇒ Object (readonly)
Returns the value of attribute porcentaje
75 76 77 |
# File 'lib/dieta/dieta.rb', line 75 def porcentaje @porcentaje end |
#titulo ⇒ Object (readonly)
Returns the value of attribute titulo
75 76 77 |
# File 'lib/dieta/dieta.rb', line 75 def titulo @titulo end |