Class: Alimento::Alimento

Inherits:
Object
  • Object
show all
Includes:
Comparable
Defined in:
lib/alimento.rb

Direct Known Subclasses

Grupoal

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(nombre, prt, gluc, lip) ⇒ Alimento

Returns a new instance of Alimento.



16
17
18
19
20
21
# File 'lib/alimento.rb', line 16

def initialize(nombre,prt,gluc,lip)
        @nombre=nombre
        @prt=prt
        @gluc=gluc
        @lip=lip
end

Instance Attribute Details

#glucObject (readonly)

Returns the value of attribute gluc.



9
10
11
# File 'lib/alimento.rb', line 9

def gluc
  @gluc
end

#lipObject (readonly)

Returns the value of attribute lip.



9
10
11
# File 'lib/alimento.rb', line 9

def lip
  @lip
end

#nombreObject (readonly)

Returns the value of attribute nombre.



9
10
11
# File 'lib/alimento.rb', line 9

def nombre
  @nombre
end

#prtObject (readonly)

Returns the value of attribute prt.



9
10
11
# File 'lib/alimento.rb', line 9

def prt
  @prt
end

Instance Method Details

#<=>(another) ⇒ Object



12
13
14
# File 'lib/alimento.rb', line 12

def <=>(another)
        kcal <=> another.kcal
end

#kcalObject



27
28
29
# File 'lib/alimento.rb', line 27

def kcal()
        @prt*4+@gluc*4+@lip*9
end

#to_sObject



23
24
25
# File 'lib/alimento.rb', line 23

def to_s()
        "#{@nombre} prt=#{@prt}g gluc=#{@gluc}g lip=#{@lip}g"
end