Class: TProducto
Instance Attribute Summary collapse
-
#aceitepalma ⇒ Object
Returns the value of attribute aceitepalma.
-
#fcaducidad ⇒ Object
Returns the value of attribute fcaducidad.
-
#tipo ⇒ Object
Returns the value of attribute tipo.
Attributes inherited from EtiquetaN
#azucares, #cantgrasas, #cantgrasasat, #fibraa, #hidratosc, #netiqueta, #proteinas, #sales, #venergeticokJ, #venergeticokcal
Instance Method Summary collapse
-
#initialize(netiqueta, venergeticokJ, venergeticokcal, cantgrasas, cantgrasasat, hidratosc, azucares, fibraa, proteinas, sales, fcaducidad, tipo, aceitepalma) ⇒ TProducto
constructor
Method to initialize every feature about the nutrition label also adding some more.
Methods inherited from EtiquetaN
Constructor Details
#initialize(netiqueta, venergeticokJ, venergeticokcal, cantgrasas, cantgrasasat, hidratosc, azucares, fibraa, proteinas, sales, fcaducidad, tipo, aceitepalma) ⇒ TProducto
Method to initialize every feature about the nutrition label also adding some more
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
# File 'lib/menud/menud.rb', line 351 def initialize(netiqueta, venergeticokJ, venergeticokcal, cantgrasas, cantgrasasat, hidratosc, azucares, fibraa, proteinas, sales, fcaducidad, tipo, aceitepalma) super :netiqueta, :venergeticokJ, :venergeticokcal, :cantgrasas, :cantgrasasat, :hidratosc, :azucares, :fibraa, :proteinas, :sales @netiqueta = netiqueta @venergeticokJ = venergeticokJ @venergeticokcal = venergeticokcal @cantgrasas = cantgrasas @cantgrasasat = cantgrasasat @hidratosc = hidratosc @azucares = azucares @fibraa = fibraa @proteinas = proteinas @sales = sales @fcaducidad = fcaducidad @tipo = tipo @aceitepalma = aceitepalma end |
Instance Attribute Details
#aceitepalma ⇒ Object
Returns the value of attribute aceitepalma.
348 349 350 |
# File 'lib/menud/menud.rb', line 348 def aceitepalma @aceitepalma end |
#fcaducidad ⇒ Object
Returns the value of attribute fcaducidad.
348 349 350 |
# File 'lib/menud/menud.rb', line 348 def fcaducidad @fcaducidad end |
#tipo ⇒ Object
Returns the value of attribute tipo.
348 349 350 |
# File 'lib/menud/menud.rb', line 348 def tipo @tipo end |