Class: Menuds
- Inherits:
-
Object
- Object
- Menuds
- Defined in:
- lib/menud/menuds.rb
Instance Attribute Summary collapse
-
#almuerzos ⇒ Object
Returns the value of attribute almuerzos.
-
#cenas ⇒ Object
Returns the value of attribute cenas.
-
#desayunos ⇒ Object
Returns the value of attribute desayunos.
-
#dia ⇒ Object
Returns the value of attribute dia.
-
#semana ⇒ Object
Returns the value of attribute semana.
-
#tiempo_estimado ⇒ Object
Returns the value of attribute tiempo_estimado.
-
#titulo_m ⇒ Object
Returns the value of attribute titulo_m.
-
#venergetico ⇒ Object
Returns the value of attribute venergetico.
-
#venergeticot ⇒ Object
Returns the value of attribute venergeticot.
Instance Method Summary collapse
- #almuerzo(options = {}) ⇒ Object
- #calc_venergetico(grasas, carbohidratos, proteinas, fibra, sal) ⇒ Object
- #cantidad(options = {}) ⇒ Object
- #cena(options = {}) ⇒ Object
- #desayuno(options = {}) ⇒ Object
-
#initialize(dia, semana, &block) ⇒ Menuds
constructor
A new instance of Menuds.
- #show ⇒ Object
- #titulo(nombre_menu) ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(dia, semana, &block) ⇒ Menuds
Returns a new instance of Menuds.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/menud/menuds.rb', line 8 def initialize(dia, semana, &block) @dia=dia @semana=semana @tiempo_estimado= [] @titulo_m @desayunos= [] @almuerzos= [] @cenas= [] @venergetico=nil @venergeticot=0 if block_given? if block.arity == 1 yield self else instance_eval(&block) end end end |
Instance Attribute Details
#almuerzos ⇒ Object
Returns the value of attribute almuerzos.
4 5 6 |
# File 'lib/menud/menuds.rb', line 4 def almuerzos @almuerzos end |
#cenas ⇒ Object
Returns the value of attribute cenas.
4 5 6 |
# File 'lib/menud/menuds.rb', line 4 def cenas @cenas end |
#desayunos ⇒ Object
Returns the value of attribute desayunos.
4 5 6 |
# File 'lib/menud/menuds.rb', line 4 def desayunos @desayunos end |
#dia ⇒ Object
Returns the value of attribute dia.
4 5 6 |
# File 'lib/menud/menuds.rb', line 4 def dia @dia end |
#semana ⇒ Object
Returns the value of attribute semana.
4 5 6 |
# File 'lib/menud/menuds.rb', line 4 def semana @semana end |
#tiempo_estimado ⇒ Object
Returns the value of attribute tiempo_estimado.
4 5 6 |
# File 'lib/menud/menuds.rb', line 4 def tiempo_estimado @tiempo_estimado end |
#titulo_m ⇒ Object
Returns the value of attribute titulo_m.
4 5 6 |
# File 'lib/menud/menuds.rb', line 4 def titulo_m @titulo_m end |
#venergetico ⇒ Object
Returns the value of attribute venergetico.
4 5 6 |
# File 'lib/menud/menuds.rb', line 4 def venergetico @venergetico end |
#venergeticot ⇒ Object
Returns the value of attribute venergeticot.
4 5 6 |
# File 'lib/menud/menuds.rb', line 4 def venergeticot @venergeticot end |
Instance Method Details
#almuerzo(options = {}) ⇒ Object
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/menud/menuds.rb', line 88 def almuerzo( = {}) almuerzoss = "\n'#{[:descripcion]}'" if [:descripcion] almuerzoss << " (#{[:porcion]})" if [:porcion] almuerzoss << " (#{[:gramos]})" if [:gramos] almuerzoss << " (#{[:grasas]})" if [:grasas] almuerzoss << " (#{[:carbohidratos]})" if [:carbohidratos] almuerzoss << " (#{[:proteinas]})" if [:proteinas] almuerzoss << " (#{[:fibra]})" if [:fibra] almuerzoss << " (#{[:sal]})" if [:sal] calc_venergetico([:grasas], [:carbohidratos], [:proteinas], [:fibra], [:sal]) almuerzoss << sprintf("%5s", " #{@venergetico.round(3)}") @almuerzos << almuerzoss end |
#calc_venergetico(grasas, carbohidratos, proteinas, fibra, sal) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/menud/menuds.rb', line 39 def calc_venergetico(grasas, carbohidratos, proteinas, fibra, sal) if fibra == nil then fibra = 0.0 end if grasas == nil then grasas = 0.0 end if carbohidratos == nil then carbohidratos = 0.0 end if proteinas == nil then proteinas = 0.0 end if sal == nil then sal = 0.0 end @venergetico = (grasas * 9) + (carbohidratos * 4) + (proteinas * 4) + (fibra * 4) + (sal * 6) @venergeticot += @venergetico end |
#cantidad(options = {}) ⇒ Object
54 55 56 57 58 59 60 61 62 63 |
# File 'lib/menud/menuds.rb', line 54 def cantidad( = {}) tiempo_e = " #{[:min]}" if [:min] tiempo_e << " #{[:max]}" if [:max] @tiempo_estimado << tiempo_e end |
#cena(options = {}) ⇒ Object
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/menud/menuds.rb', line 113 def cena( = {}) cenass = "\n'#{[:descripcion]}'" if [:descripcion] cenass << " (#{[:porcion]})" if [:porcion] cenass << " (#{[:gramos]})" if [:gramos] cenass << " (#{[:grasas]})" if [:grasas] cenass << " (#{[:carbohidratos]})" if [:carbohidratos] cenass << " (#{[:proteinas]})" if [:proteinas] cenass << " (#{[:fibra]})" if [:fibra] cenass << " (#{[:sal]})" if [:sal] calc_venergetico([:grasas], [:carbohidratos], [:proteinas], [:fibra], [:sal]) cenass << sprintf("%5s", " #{@venergetico}") @cenas << cenass end |
#desayuno(options = {}) ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/menud/menuds.rb', line 66 def desayuno( = {}) desayunoss = "\n'#{[:descripcion]}'" if [:descripcion] desayunoss << " (#{[:porcion]})" if [:porcion] desayunoss << " (#{[:gramos]})" if [:gramos] desayunoss << " (#{[:grasas]})" if [:grasas] desayunoss << " (#{[:carbohidratos]})" if [:carbohidratos] desayunoss << " (#{[:proteinas]})" if [:proteinas] desayunoss << " (#{[:fibra]})" if [:fibra] desayunoss << " (#{[:sal]})" if [:sal] calc_venergetico([:grasas], [:carbohidratos], [:proteinas], [:fibra], [:sal]) desayunoss << sprintf("%5s", " #{@venergetico}") @desayunos << desayunoss end |
#show ⇒ Object
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'lib/menud/menuds.rb', line 176 def show output = "\n" + @dia + " " + @semana + " " + @titulo_m + " ComposiciĆ³n Nutricional" output << "\n#{'=' * 60}\n" cabecera = sprintf("%20s %10s %5s %5s %3s %3s %3s %3s\n","porcion", "gramos", "grasas", "carbohidratos", "proteinas", "fibra", "sal", "venergetico") output << cabecera output << "\nDesayuno" @desayunos.each do |x| output << "#{x}\n" end output << "\nAlmuerzo" @almuerzos.each do |j| output << "#{j}\n" end output << "\nCena" @cenas.each do |k| output << "#{k}\n" + "\n" end output << "\Venergeticot #{@venergeticot.round(3)}" + "\n" puts output end |
#titulo(nombre_menu) ⇒ Object
32 33 34 35 36 |
# File 'lib/menud/menuds.rb', line 32 def titulo() @titulo_m= end |
#to_s ⇒ Object
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/menud/menuds.rb', line 136 def to_s output = "\n" + @dia + " " + @semana + " " + @titulo_m + " ComposiciĆ³n Nutricional" output << "\n#{'=' * 60}\n" cabecera = sprintf("%20s %10s %5s %5s %3s %3s %3s %3s\n","porcion", "gramos", "grasas", "carbohidratos", "proteinas", "fibra", "sal", "venergetico") output << cabecera output << "\nDesayuno" @desayunos.each do |x| output << "#{x}\n" end output << "\nAlmuerzo" @almuerzos.each do |j| output << "#{j}\n" end output << "\nCena" @cenas.each do |k| output << "#{k}\n" + "\n" end output << "\Venergeticot #{@venergeticot.round(3)}" + "\n" output end |