Class: PlatoDSL
- Inherits:
-
Object
- Object
- PlatoDSL
- Defined in:
- lib/feeding/platoDSL.rb
Instance Attribute Summary collapse
-
#alimentos ⇒ Object
Returns the value of attribute alimentos.
-
#nombre ⇒ Object
Returns the value of attribute nombre.
Instance Method Summary collapse
- #alimento(nombre, options = {}) ⇒ Object
-
#initialize(nombre, &block) ⇒ PlatoDSL
constructor
A new instance of PlatoDSL.
- #to_s ⇒ Object
Constructor Details
#initialize(nombre, &block) ⇒ PlatoDSL
Returns a new instance of PlatoDSL.
3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'lib/feeding/platoDSL.rb', line 3 def initialize(nombre, &block) @nombre = nombre @alimentos = [] if block_given? if block.arity == 1 yield self else instance_eval(&block) end end end |
Instance Attribute Details
#alimentos ⇒ Object
Returns the value of attribute alimentos.
2 3 4 |
# File 'lib/feeding/platoDSL.rb', line 2 def alimentos @alimentos end |
#nombre ⇒ Object
Returns the value of attribute nombre.
2 3 4 |
# File 'lib/feeding/platoDSL.rb', line 2 def nombre @nombre end |
Instance Method Details
#alimento(nombre, options = {}) ⇒ Object
16 17 18 19 20 21 22 23 24 25 |
# File 'lib/feeding/platoDSL.rb', line 16 def alimento(nombre, = {}) alimento = nombre alimento << " (Gr: #{[:gramos]} gr)" if [:gramos] alimento << " (Pr: #{[:proteinas]} gr)" if [:proteinas] alimento << " (Hd: #{[:hidratos]} gr)" if [:hidratos] alimento << " (Lp: #{[:lipidos]} gr)" if [:lipidos] alimento << " (CO2: #{[:gases]} kg/año)" if [:gases] alimento << " (Terreno: #{[:terreno]} m2/año)\n" if [:terreno] @alimentos << alimento end |
#to_s ⇒ Object
27 28 29 30 31 |
# File 'lib/feeding/platoDSL.rb', line 27 def to_s salida = @nombre salida << "\n#{'=' * @nombre.size}\n\n" salida << "Alimentos: - #{@alimentos.join('- ')}\n\n" end |