Class: Dieta::Dieta_edad

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#datosObject (readonly)

Returns the value of attribute datos



75
76
77
# File 'lib/dieta/dieta.rb', line 75

def datos
  @datos
end

#edadObject (readonly)

Returns the value of attribute edad



75
76
77
# File 'lib/dieta/dieta.rb', line 75

def edad
  @edad
end

#platosObject (readonly)

Returns the value of attribute platos



75
76
77
# File 'lib/dieta/dieta.rb', line 75

def platos
  @platos
end

#porcentajeObject (readonly)

Returns the value of attribute porcentaje



75
76
77
# File 'lib/dieta/dieta.rb', line 75

def porcentaje
  @porcentaje
end

#tituloObject (readonly)

Returns the value of attribute titulo



75
76
77
# File 'lib/dieta/dieta.rb', line 75

def titulo
  @titulo
end