alimentos 0.1.0

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.
Files changed (97) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +9 -0
  4. data/.rake_tasks~ +7 -0
  5. data/.rspec +2 -0
  6. data/.travis.yml +5 -0
  7. data/CODE_OF_CONDUCT.md +74 -0
  8. data/Gemfile +7 -0
  9. data/Guardfile +82 -0
  10. data/LICENSE.txt +21 -0
  11. data/README.md +50 -0
  12. data/Rakefile +6 -0
  13. data/alimentos.gemspec +45 -0
  14. data/bin/bundler +17 -0
  15. data/bin/console +14 -0
  16. data/bin/htmldiff +17 -0
  17. data/bin/ldiff +17 -0
  18. data/bin/rake +17 -0
  19. data/bin/rspec +17 -0
  20. data/bin/setup +8 -0
  21. data/docs/Alimento.html +469 -0
  22. data/docs/Alimentos.html +109 -0
  23. data/docs/CODE_OF_CONDUCT_md.html +195 -0
  24. data/docs/Gemfile.html +103 -0
  25. data/docs/Gemfile_lock.html +180 -0
  26. data/docs/Grupo.html +383 -0
  27. data/docs/Grupo_bebidas.html +102 -0
  28. data/docs/Grupo_carbohidratos.html +102 -0
  29. data/docs/Grupo_carnes.html +102 -0
  30. data/docs/Grupo_frutas.html +102 -0
  31. data/docs/Grupo_grasos.html +102 -0
  32. data/docs/Grupo_lacteos.html +102 -0
  33. data/docs/Grupo_pescados.html +102 -0
  34. data/docs/Grupo_verduras.html +102 -0
  35. data/docs/Guardfile.html +180 -0
  36. data/docs/LICENSE_txt.html +117 -0
  37. data/docs/Lista.html +457 -0
  38. data/docs/Object.html +116 -0
  39. data/docs/README_md.html +177 -0
  40. data/docs/Rakefile.html +101 -0
  41. data/docs/alimentos_gemspec.html +135 -0
  42. data/docs/bin/setup.html +101 -0
  43. data/docs/created.rid +23 -0
  44. data/docs/css/fonts.css +167 -0
  45. data/docs/css/rdoc.css +590 -0
  46. data/docs/fonts/Lato-Light.ttf +0 -0
  47. data/docs/fonts/Lato-LightItalic.ttf +0 -0
  48. data/docs/fonts/Lato-Regular.ttf +0 -0
  49. data/docs/fonts/Lato-RegularItalic.ttf +0 -0
  50. data/docs/fonts/SourceCodePro-Bold.ttf +0 -0
  51. data/docs/fonts/SourceCodePro-Regular.ttf +0 -0
  52. data/docs/images/add.png +0 -0
  53. data/docs/images/arrow_up.png +0 -0
  54. data/docs/images/brick.png +0 -0
  55. data/docs/images/brick_link.png +0 -0
  56. data/docs/images/bug.png +0 -0
  57. data/docs/images/bullet_black.png +0 -0
  58. data/docs/images/bullet_toggle_minus.png +0 -0
  59. data/docs/images/bullet_toggle_plus.png +0 -0
  60. data/docs/images/date.png +0 -0
  61. data/docs/images/delete.png +0 -0
  62. data/docs/images/find.png +0 -0
  63. data/docs/images/loadingAnimation.gif +0 -0
  64. data/docs/images/macFFBgHack.png +0 -0
  65. data/docs/images/package.png +0 -0
  66. data/docs/images/page_green.png +0 -0
  67. data/docs/images/page_white_text.png +0 -0
  68. data/docs/images/page_white_width.png +0 -0
  69. data/docs/images/plugin.png +0 -0
  70. data/docs/images/ruby.png +0 -0
  71. data/docs/images/tag_blue.png +0 -0
  72. data/docs/images/tag_green.png +0 -0
  73. data/docs/images/transparent.png +0 -0
  74. data/docs/images/wrench.png +0 -0
  75. data/docs/images/wrench_orange.png +0 -0
  76. data/docs/images/zoom.png +0 -0
  77. data/docs/index.html +129 -0
  78. data/docs/js/darkfish.js +161 -0
  79. data/docs/js/jquery.js +4 -0
  80. data/docs/js/navigation.js +142 -0
  81. data/docs/js/navigation.js.gz +0 -0
  82. data/docs/js/search.js +109 -0
  83. data/docs/js/search_index.js +1 -0
  84. data/docs/js/search_index.js.gz +0 -0
  85. data/docs/js/searcher.js +228 -0
  86. data/docs/js/searcher.js.gz +0 -0
  87. data/docs/table_of_contents.html +236 -0
  88. data/lib/alimentos.rb +11 -0
  89. data/lib/alimentos/alimento.rb +40 -0
  90. data/lib/alimentos/calculadora.rb +52 -0
  91. data/lib/alimentos/comida.rb +58 -0
  92. data/lib/alimentos/grupo.rb +54 -0
  93. data/lib/alimentos/harvard_dsl.rb +67 -0
  94. data/lib/alimentos/individuo.rb +43 -0
  95. data/lib/alimentos/lista.rb +65 -0
  96. data/lib/alimentos/version.rb +3 -0
  97. metadata +237 -0
@@ -0,0 +1,11 @@
1
+ require "alimentos/version"
2
+ require "alimentos/alimento"
3
+ require "alimentos/lista"
4
+ require "alimentos/grupo"
5
+ require "alimentos/comida"
6
+ require "alimentos/individuo"
7
+ require "alimentos/calculadora"
8
+ require "alimentos/harvard_dsl"
9
+ module Alimentos
10
+ # Your code goes here...
11
+ end
@@ -0,0 +1,40 @@
1
+ # creacion de los metodos:
2
+
3
+
4
+
5
+ class Alimento
6
+ attr_reader :nombre, :proteinas, :glucidos, :lipidos
7
+ def initialize nombre, proteinas, glucidos, lipidos
8
+ @nombre, @proteinas, @glucidos, @lipidos = nombre, proteinas, glucidos, lipidos
9
+ end
10
+
11
+ def get_nombre
12
+ @nombre
13
+ end
14
+
15
+ def get_proteinas
16
+ @proteinas
17
+ end
18
+
19
+ def get_glucidos
20
+ @glucidos
21
+ end
22
+
23
+ def get_lipidos
24
+ @lipidos
25
+ end
26
+
27
+ def get_energetico
28
+ @aux = (@glucidos * 4) + (@lipidos * 9) + (@proteinas * 4)
29
+ @aux
30
+ end
31
+
32
+ def == (otro)
33
+ self.class == otro.class && @nombre == otro.nombre && @proteinas == otro.proteinas && @glucidos == otro.glucidos && @lipidos == otro.lipidos
34
+ end
35
+
36
+ def to_s
37
+ "#{nombre}, #{proteinas}, #{glucidos}, #{lipidos}"
38
+ end
39
+ end
40
+
@@ -0,0 +1,52 @@
1
+ class Calculadora
2
+ # método inicializar clase
3
+ def initialize(individuos)
4
+ # atributos
5
+ @individuos = individuos
6
+ @resultados = []
7
+ end
8
+
9
+ #metodo que calcula el indice glucemico de todos los alimentos de los
10
+ #individuos
11
+ def calcular()
12
+ lista_nombres=@individuos[0].get_lista_nombres
13
+ lista_nombres.each do |nombre|
14
+ cont=0
15
+ igind=0
16
+ #puts nombre
17
+ for j in 0..@individuos.length-1
18
+ glucosa=@individuos[j].get_glucosa.to_f
19
+ #puts glucosa
20
+ aibc=@individuos[j].get_aibc(nombre)
21
+ #puts aibc
22
+ aux=aibc/glucosa*100
23
+ #puts aux
24
+ igind=igind+aux
25
+ cont=cont+1
26
+ end
27
+ igind=igind/cont
28
+ #puts igind
29
+ @resultados << nombre + " " + igind.round(2).to_s + "\n"
30
+ end
31
+ end
32
+
33
+ #metodo que muestra por pantalla los resultados obtenenidos con el metodo
34
+ #calcular. Alimento -> Indice glucemico
35
+ def mostrar_resultados
36
+ calcular
37
+ s="Resultados\n"
38
+ for j in 0..@resultados.length-1
39
+ s << @resultados[j].to_s
40
+ end
41
+ s
42
+ end
43
+
44
+ #salida por pantalla de clase
45
+ def to_s
46
+ s = "\nLista de Individuos y sus alimentos\n"
47
+ for j in 0..@individuos.length-1
48
+ s << @individuos[j].to_s + "\n"
49
+ end
50
+ s
51
+ end
52
+ end
@@ -0,0 +1,58 @@
1
+ class Comida
2
+ # método inicializar clase
3
+ def initialize(nombre, tiempo,concentraciones)
4
+ # atributos
5
+ @nombre = nombre
6
+ @concentraciones = concentraciones
7
+ @tiempo = tiempo
8
+ end
9
+
10
+ def get_nombre()
11
+ return @nombre
12
+ end
13
+
14
+ #método que nos devuelve el calculo del aibc del alimento
15
+ def get_aibc()
16
+ #metodo imperativo
17
+ #total = 0
18
+ #for j in 1..@concentraciones.length-1
19
+ # aux=@concentraciones[j].to_f-@concentraciones[0].to_f
20
+ # aux2=@concentraciones[j-1].to_f-@concentraciones[0].to_f
21
+ # if aux < 0
22
+ # aux=0
23
+ # end
24
+ # if aux2 < 0
25
+ # aux2=0
26
+ # end
27
+ # aux3=aux+aux2
28
+ # aux3=aux3*@tiempo.to_f
29
+ # aux3=aux3/2
30
+ # total=total+aux3
31
+ #end
32
+
33
+ #otro metodo
34
+ s=[]
35
+ @concentraciones[1..@concentraciones.length-1].zip(@concentraciones[0..@concentraciones.length-2]) do |x,y|
36
+ if x < @concentraciones[0]
37
+ s << 0.0
38
+ else
39
+ s << (((x - @concentraciones[0])+(y-@concentraciones[0]))/2)*5
40
+ end
41
+ end
42
+ #puts s.reduce(:+).round(2)
43
+ #puts total.round(2)
44
+ #return total.round(2)
45
+ return s.reduce(:+).round(2)
46
+ end
47
+
48
+ #salida por pantalla de clase
49
+ def to_s
50
+ s = "\n"
51
+ s << "#{@nombre}\n"
52
+ s << "\nConcentraciones: #{@concentraciones}"
53
+ s << "\nPeriodo de Tiempo: #{@tiempo} minutos"
54
+ s << "\n"
55
+ s << "\nAIBC: " + get_aibc.to_s
56
+ s
57
+ end
58
+ end
@@ -0,0 +1,54 @@
1
+ class Grupo
2
+
3
+ include Comparable
4
+
5
+ attr_reader :titulo, :alimentos
6
+ def initialize titulo, alimentos
7
+ @titulo, @alimentos = titulo, alimentos
8
+ end
9
+ def get_titulo
10
+ @titulo
11
+ end
12
+ def get_alimento i
13
+ @alimentos[i]
14
+ end
15
+ def getall_alimentos
16
+ @alimentos
17
+ end
18
+ def to_s
19
+ out = "#{@titulo.upcase}\n"
20
+ out << @alimentos.map { |alimento| "-#{alimento}" }.join(",\n")
21
+ out
22
+ end
23
+ def <=> (otro)
24
+ @titulo<=>otro.titulo
25
+ end
26
+ end
27
+
28
+ class Grupo_lacteos < Grupo
29
+ end
30
+
31
+ class Grupo_carnes < Grupo
32
+ end
33
+
34
+ class Grupo_pescados < Grupo
35
+ end
36
+
37
+ class Grupo_grasos < Grupo
38
+ end
39
+
40
+ class Grupo_carbohidratos < Grupo
41
+ end
42
+
43
+ class Grupo_verduras < Grupo
44
+ end
45
+
46
+ class Grupo_lacteos < Grupo
47
+ end
48
+
49
+ class Grupo_frutas < Grupo
50
+ end
51
+
52
+ class Grupo_bebidas < Grupo
53
+ end
54
+
@@ -0,0 +1,67 @@
1
+ class Harvard_DSL
2
+ attr_accessor :name, :platos
3
+
4
+ def initialize(name, &block)
5
+ self.name = name
6
+ self.platos = []
7
+
8
+ instance_eval &block
9
+ end
10
+
11
+ def vegetal(titulo, options = {})
12
+ platos << titulo
13
+ platos << " (#{options[:porcion]})" if options[:porcion]
14
+ platos << " (#{options[:gramos]})" if options[:gramos]
15
+ platos << "\n"
16
+ end
17
+
18
+ def fruta(titulo,options = {})
19
+ platos << titulo
20
+ platos << " (#{options[:porcion]})" if options[:porcion]
21
+ platos << " (#{options[:gramos]})" if options[:gramos]
22
+ platos << "\n"
23
+ end
24
+
25
+ def cereal(titulo,options = {})
26
+ platos << titulo
27
+ platos << " (#{options[:porcion]})" if options[:porcion]
28
+ platos << " (#{options[:gramos]})" if options[:gramos]
29
+ platos << "\n"
30
+ end
31
+
32
+ def proteina(titulo,options = {})
33
+ platos << titulo
34
+ platos << " (#{options[:porcion]})" if options[:porcion]
35
+ platos << " (#{options[:gramos]})" if options[:gramos]
36
+ platos << "\n"
37
+ end
38
+
39
+ def aceite(titulo,options = {})
40
+ platos << titulo
41
+ platos << " (#{options[:porcion]})" if options[:porcion]
42
+ platos << " (#{options[:gramos]})" if options[:gramos]
43
+ platos << "\n"
44
+ end
45
+
46
+ def to_s
47
+ output = ""
48
+ output << name
49
+ output << "\n"
50
+ for i in 0..name.size-1 do
51
+ output << "="
52
+ end
53
+ output << "\n"
54
+ output << "\nComposición nutricional:\n"
55
+ output << "\n"
56
+ platos.each_with_index do |plato, index|
57
+ output << "#{plato}"
58
+ if index>0
59
+ if (index-1) % 3 == 1
60
+ output << "\n"
61
+ end
62
+ end
63
+ end
64
+
65
+ output
66
+ end
67
+ end
@@ -0,0 +1,43 @@
1
+ class Individuo
2
+ # método inicializar clase
3
+ def initialize(num, alimentos, glucosa)
4
+ # atributos
5
+ @num = num
6
+ @alimentos = alimentos
7
+ @glucosa = glucosa
8
+ end
9
+
10
+ def get_glucosa()
11
+ @glucosa.get_aibc
12
+ end
13
+
14
+ def get_aibc(nombre)
15
+ for j in 0..@alimentos.length-1
16
+ if @alimentos[j].get_nombre==nombre
17
+ return @alimentos[j].get_aibc
18
+ end
19
+ end
20
+ end
21
+
22
+ #metodo que nos devuelve una lista con los nombres de todos los alimentos
23
+ def get_lista_nombres()
24
+ lista = []
25
+ for j in 0..@alimentos.length-1
26
+ lista<<@alimentos[j].get_nombre
27
+ end
28
+ return lista
29
+ end
30
+
31
+ #salida por pantalla de clase
32
+ def to_s
33
+ s = "Individuo " + @num
34
+ s << "\nAlimentos:\n"
35
+ for j in 0..@alimentos.length-1
36
+ s << @alimentos[j].to_s
37
+ end
38
+ s << @glucosa.to_s
39
+ s << "\n"
40
+ s
41
+ end
42
+ end
43
+
@@ -0,0 +1,65 @@
1
+ Nodo = Struct.new(:value, :next, :prev)
2
+
3
+ class Lista
4
+
5
+ include Enumerable
6
+
7
+ attr_accessor :cabeza, :cola, :nodo_actual
8
+
9
+ def initialize(cabeza,cola)
10
+ @cabeza = cabeza
11
+ @cola = cola
12
+ end
13
+
14
+ def insertar(x)
15
+ node = Nodo.new(x,nil,nil)
16
+
17
+ if @cabeza==nil && @cola==nil
18
+ node.prev = @cola
19
+ node.next = @cabeza
20
+ @nodo_actual = node
21
+ @cabeza = node
22
+ @cola = node
23
+ else
24
+ node.prev = @cabeza
25
+ node.next = nil
26
+ @nodo_actual = node
27
+ @cabeza.next = node
28
+ @cabeza = node
29
+ end
30
+ end
31
+
32
+ def insertar_varios(nodos)
33
+ nodos.each do |nd|
34
+ insertar(nd)
35
+ end
36
+ end
37
+
38
+ #eliminar el nodo y cambiar los valores al nodo anterior
39
+ def extraer_inicio()
40
+ @cola=@cola.next
41
+ end
42
+
43
+ def extrar_final()
44
+ @cabeza = @cabeza.prev
45
+ end
46
+
47
+ def to_s
48
+ @cabeza.to_s
49
+ end
50
+
51
+ def each
52
+ while @cabeza != @cola
53
+ yield @cabeza.value
54
+ @cabeza=@cabeza.prev
55
+ end
56
+
57
+ if @cabeza == @cola
58
+ if @cabeza == nil
59
+ nil
60
+ else
61
+ yield @cola.value
62
+ end
63
+ end
64
+ end
65
+ end
@@ -0,0 +1,3 @@
1
+ module Alimentos
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,237 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: alimentos
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - rafael abadia
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-12-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: guard
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: guard-rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: guard-bundler
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: coveralls
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: Descripcion de la gema
112
+ email:
113
+ - alu0100648782@ull.edu.es
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - ".coveralls.yml"
119
+ - ".gitignore"
120
+ - ".rake_tasks~"
121
+ - ".rspec"
122
+ - ".travis.yml"
123
+ - CODE_OF_CONDUCT.md
124
+ - Gemfile
125
+ - Guardfile
126
+ - LICENSE.txt
127
+ - README.md
128
+ - Rakefile
129
+ - alimentos.gemspec
130
+ - bin/bundler
131
+ - bin/console
132
+ - bin/htmldiff
133
+ - bin/ldiff
134
+ - bin/rake
135
+ - bin/rspec
136
+ - bin/setup
137
+ - docs/Alimento.html
138
+ - docs/Alimentos.html
139
+ - docs/CODE_OF_CONDUCT_md.html
140
+ - docs/Gemfile.html
141
+ - docs/Gemfile_lock.html
142
+ - docs/Grupo.html
143
+ - docs/Grupo_bebidas.html
144
+ - docs/Grupo_carbohidratos.html
145
+ - docs/Grupo_carnes.html
146
+ - docs/Grupo_frutas.html
147
+ - docs/Grupo_grasos.html
148
+ - docs/Grupo_lacteos.html
149
+ - docs/Grupo_pescados.html
150
+ - docs/Grupo_verduras.html
151
+ - docs/Guardfile.html
152
+ - docs/LICENSE_txt.html
153
+ - docs/Lista.html
154
+ - docs/Object.html
155
+ - docs/README_md.html
156
+ - docs/Rakefile.html
157
+ - docs/alimentos_gemspec.html
158
+ - docs/bin/setup.html
159
+ - docs/created.rid
160
+ - docs/css/fonts.css
161
+ - docs/css/rdoc.css
162
+ - docs/fonts/Lato-Light.ttf
163
+ - docs/fonts/Lato-LightItalic.ttf
164
+ - docs/fonts/Lato-Regular.ttf
165
+ - docs/fonts/Lato-RegularItalic.ttf
166
+ - docs/fonts/SourceCodePro-Bold.ttf
167
+ - docs/fonts/SourceCodePro-Regular.ttf
168
+ - docs/images/add.png
169
+ - docs/images/arrow_up.png
170
+ - docs/images/brick.png
171
+ - docs/images/brick_link.png
172
+ - docs/images/bug.png
173
+ - docs/images/bullet_black.png
174
+ - docs/images/bullet_toggle_minus.png
175
+ - docs/images/bullet_toggle_plus.png
176
+ - docs/images/date.png
177
+ - docs/images/delete.png
178
+ - docs/images/find.png
179
+ - docs/images/loadingAnimation.gif
180
+ - docs/images/macFFBgHack.png
181
+ - docs/images/package.png
182
+ - docs/images/page_green.png
183
+ - docs/images/page_white_text.png
184
+ - docs/images/page_white_width.png
185
+ - docs/images/plugin.png
186
+ - docs/images/ruby.png
187
+ - docs/images/tag_blue.png
188
+ - docs/images/tag_green.png
189
+ - docs/images/transparent.png
190
+ - docs/images/wrench.png
191
+ - docs/images/wrench_orange.png
192
+ - docs/images/zoom.png
193
+ - docs/index.html
194
+ - docs/js/darkfish.js
195
+ - docs/js/jquery.js
196
+ - docs/js/navigation.js
197
+ - docs/js/navigation.js.gz
198
+ - docs/js/search.js
199
+ - docs/js/search_index.js
200
+ - docs/js/search_index.js.gz
201
+ - docs/js/searcher.js
202
+ - docs/js/searcher.js.gz
203
+ - docs/table_of_contents.html
204
+ - lib/alimentos.rb
205
+ - lib/alimentos/alimento.rb
206
+ - lib/alimentos/calculadora.rb
207
+ - lib/alimentos/comida.rb
208
+ - lib/alimentos/grupo.rb
209
+ - lib/alimentos/harvard_dsl.rb
210
+ - lib/alimentos/individuo.rb
211
+ - lib/alimentos/lista.rb
212
+ - lib/alimentos/version.rb
213
+ homepage: https://github.com/alu0100648782/tdd-2017-18.git
214
+ licenses:
215
+ - MIT
216
+ metadata: {}
217
+ post_install_message:
218
+ rdoc_options: []
219
+ require_paths:
220
+ - lib
221
+ required_ruby_version: !ruby/object:Gem::Requirement
222
+ requirements:
223
+ - - ">="
224
+ - !ruby/object:Gem::Version
225
+ version: '0'
226
+ required_rubygems_version: !ruby/object:Gem::Requirement
227
+ requirements:
228
+ - - ">="
229
+ - !ruby/object:Gem::Version
230
+ version: '0'
231
+ requirements: []
232
+ rubyforge_project:
233
+ rubygems_version: 2.5.1
234
+ signing_key:
235
+ specification_version: 4
236
+ summary: sumario de la gema
237
+ test_files: []