dietary_dsl 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f57eda75d75d970e6bdbdccff368bc9898837f0d
4
- data.tar.gz: 3b5f5c21628fdcd6bc936bdfced6a88164432ad6
3
+ metadata.gz: ad41b81801c85ca443e980827a5406499051862a
4
+ data.tar.gz: b19ab754323d2a0ba736655eded800d933924e1b
5
5
  SHA512:
6
- metadata.gz: 26296bfdff40667c3bfae669c164c53c2efcd663afb6713fdc7fb7ddd4630b4edea22208070cc5f9543ece75ca9ea6ecbd1f75fd69ba256304e9600e0c73b538
7
- data.tar.gz: 54a05961f6a61e9b33334a7b3019b90ddf8432d05aff902eddcf2975a7a3e358aab4ba461857dc75b30f8cde3ce5838d6e22d477b35e8639980d60668c1f3aa2
6
+ metadata.gz: 56bc71fba5af55a4b199052b76ffe6035e03195b1c99cb4c74c8d7950e9dc688fb34f647f1d6031fbb8bc81aac6a80e8c07da49b658e8c3b2e17caa8992abfe9
7
+ data.tar.gz: b671ffe188c5ddb889980940c51876fbd4090abf2458cb81602e48785740ce46b9e815f2b427916d728ad8058282524f515a68423eb6bbdc7205ee64959cb04b
@@ -102,7 +102,7 @@ module DietaryDsl
102
102
  end
103
103
 
104
104
  def [](key)
105
- return @data[key].delete(',') if key === :nombre or key === :name
105
+ return @data[key].delete(',') if %i[nombre name].include?(key)
106
106
  @data[key]
107
107
  end
108
108
 
@@ -3,6 +3,8 @@
3
3
  module DietaryDsl
4
4
  # Clase que representa un día completo, con los menús correspondientes para cada comida
5
5
  class Dia
6
+ attr_reader :title
7
+
6
8
  include Enumerable
7
9
 
8
10
  def initialize(title = nil, &block)
@@ -7,8 +7,8 @@ module DietaryDsl
7
7
  class Masa < Measure
8
8
  def initialize(en_gramos)
9
9
  super(en_gramos)
10
- @small_postfix = "g"
11
- @big_postfix = "kg"
10
+ @small_postfix = 'g'
11
+ @big_postfix = 'kg'
12
12
  end
13
13
 
14
14
  # Métodos de clase para instanciarlo
@@ -16,12 +16,10 @@ module DietaryDsl
16
16
  def to_s
17
17
  if @cantidad < 1000
18
18
  "#{small.to_i}#{@small_postfix}"
19
+ elsif big == big.to_i
20
+ "#{big.to_i}#{@big_postfix}"
19
21
  else
20
- if big == big.to_i
21
- "#{big.to_i}#{@big_postfix}"
22
- else
23
- "#{big.round(1)}#{@big_postfix}"
24
- end
22
+ "#{big.round(1)}#{@big_postfix}"
25
23
  end
26
24
  end
27
25
  end
@@ -8,8 +8,8 @@ module DietaryDsl
8
8
  def initialize(en_ml)
9
9
  super(en_ml)
10
10
  @cantidad = cantidad.to_f
11
- @small_postfix = "ml"
12
- @big_postfix = "L"
11
+ @small_postfix = 'ml'
12
+ @big_postfix = 'L'
13
13
  end
14
14
 
15
15
  def self.l(number)
@@ -25,7 +25,7 @@ module DietaryDsl
25
25
  end
26
26
 
27
27
  def self.cucharada(number)
28
- Volumen.new(number * 15.0)
28
+ Volumen.new(number * 15.0)
29
29
  end
30
30
 
31
31
  def self.vaso(number)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DietaryDsl
4
- VERSION = '0.4.0'
4
+ VERSION = '0.4.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dietary_dsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Ramos