gema-alu0101040882 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +8 -0
- data/.rake_tasks~ +7 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/.yardoc/checksums +9 -0
- data/.yardoc/complete +0 -0
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +0 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +111 -0
- data/Guardfile +82 -0
- data/README.md +32 -0
- data/Rakefile +8 -0
- data/bin/bundle +105 -0
- data/bin/console +14 -0
- data/bin/htmldiff +29 -0
- data/bin/ldiff +29 -0
- data/bin/rake +29 -0
- data/bin/rspec +29 -0
- data/bin/setup +8 -0
- data/doc/Dll.html +1502 -0
- data/doc/Dll/Node.html +398 -0
- data/doc/Etiqueta_nut.html +1717 -0
- data/doc/Gema.html +134 -0
- data/doc/Individuo.html +289 -0
- data/doc/Menu_dietetico.html +483 -0
- data/doc/Paciente.html +233 -0
- data/doc/Paciente_obeso.html +1386 -0
- data/doc/Valores_nut.html +777 -0
- data/doc/_index.html +208 -0
- data/doc/class_list.html +51 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +58 -0
- data/doc/css/style.css +496 -0
- data/doc/file.README.html +115 -0
- data/doc/file_list.html +56 -0
- data/doc/frames.html +17 -0
- data/doc/index.html +115 -0
- data/doc/js/app.js +292 -0
- data/doc/js/full_list.js +216 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +651 -0
- data/doc/top-level-namespace.html +112 -0
- data/gema.gemspec +43 -0
- data/lib/gema.rb +14 -0
- data/lib/gema/etiqueta_nut.rb +46 -0
- data/lib/gema/individuo.rb +14 -0
- data/lib/gema/list.rb +212 -0
- data/lib/gema/menu.rb +134 -0
- data/lib/gema/menu_dietetico.rb +37 -0
- data/lib/gema/paciente.rb +12 -0
- data/lib/gema/paciente_obeso.rb +75 -0
- data/lib/gema/valores_nut.rb +40 -0
- data/lib/gema/version.rb +4 -0
- metadata +197 -0
data/lib/gema/menu.rb
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
class Menu
|
2
|
+
|
3
|
+
def initialize(nombre, &block)
|
4
|
+
|
5
|
+
@nombre = nombre
|
6
|
+
|
7
|
+
@desayuno = []
|
8
|
+
@almuerzo = []
|
9
|
+
@cena = []
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
if block_given?
|
14
|
+
if block.arity == 1
|
15
|
+
yield self
|
16
|
+
else
|
17
|
+
instance_eval(&block)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
puts self
|
22
|
+
end
|
23
|
+
|
24
|
+
|
25
|
+
def titulo(name)
|
26
|
+
@titulo = name
|
27
|
+
end
|
28
|
+
|
29
|
+
def ingesta(options = {} )
|
30
|
+
|
31
|
+
@min = (options[:min]) if options[:min]
|
32
|
+
@max = (options[:max]) if options[:max]
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
|
+
def valor_energetico_total
|
37
|
+
|
38
|
+
@valor_energetico = @desayuno.map{|x| x.kcal}.reduce(:+)
|
39
|
+
@valor_energetico += @almuerzo.map{|x| x.kcal}.reduce(:+)
|
40
|
+
@valor_energetico += @cena.map{|x| x.kcal}.reduce(:+)
|
41
|
+
|
42
|
+
end
|
43
|
+
|
44
|
+
def desayuno(descripcion, options = {})
|
45
|
+
|
46
|
+
grasas = options[:grasas] ? options[:grasas] : 0.0
|
47
|
+
grasas_s = options[:grasas_s] ? options[:grasas_s] : 0.0
|
48
|
+
hidratos = options[:hidratos] ? options[:hidratos] : 0.0
|
49
|
+
azucares = options[:azucares] ? options[:azucares] : 0.0
|
50
|
+
proteinas = options[:proteinas] ? options[:proteinas] : 0.0
|
51
|
+
sal = options[:sal] ? options[:sal] : 0.0
|
52
|
+
grasas_mon = options[:grasas_mon] ? options[:grasas_mon] : 0.0
|
53
|
+
grasas_pol = options[:grasas_pol] ? options[:grasas_pol] : 0.0
|
54
|
+
polialcoholes = options[:polialcoholes] ? options[:polialcoholes] : 0.0
|
55
|
+
almidon = options[:almidon] ? options[:almidon] : 0.0
|
56
|
+
fibra = options[:fibra] ? options[:fibra] : 0.0
|
57
|
+
vitaminas = options[:vitaminas] ? options[:vitaminas] : 0.0
|
58
|
+
minerales = options[:minerales] ? options[:minerales] : 0.0
|
59
|
+
|
60
|
+
etiqueta = Etiqueta_nut.new(descripcion, grasas , grasas_s , hidratos , azucares , proteinas , sal , grasas_mon , grasas_pol , polialcoholes , almidon , fibra , vitaminas , minerales)
|
61
|
+
etiqueta.valor_energetico()
|
62
|
+
|
63
|
+
|
64
|
+
@desayuno << etiqueta
|
65
|
+
end
|
66
|
+
|
67
|
+
|
68
|
+
def almuerzo(descripcion ,options = {})
|
69
|
+
|
70
|
+
|
71
|
+
grasas = options[:grasas] ? options[:grasas] : 0.0
|
72
|
+
grasas_s = options[:grasas_s] ? options[:grasas_s] : 0.0
|
73
|
+
hidratos = options[:hidratos] ? options[:hidratos] : 0.0
|
74
|
+
azucares = options[:azucares] ? options[:azucares] : 0.0
|
75
|
+
proteinas = options[:proteinas] ? options[:proteinas] : 0.0
|
76
|
+
sal = options[:sal] ? options[:sal] : 0.0
|
77
|
+
grasas_mon = options[:grasas_mon] ? options[:grasas_mon] : 0.0
|
78
|
+
grasas_pol = options[:grasas_pol] ? options[:grasas_pol] : 0.0
|
79
|
+
polialcoholes = options[:polialcoholes] ? options[:polialcoholes] : 0.0
|
80
|
+
almidon = options[:almidon] ? options[:almidon] : 0.0
|
81
|
+
fibra = options[:fibra] ? options[:fibra] : 0.0
|
82
|
+
vitaminas = options[:vitaminas] ? options[:vitaminas] : 0.0
|
83
|
+
minerales = options[:minerales] ? options[:minerales] : 0.0
|
84
|
+
|
85
|
+
etiqueta = Etiqueta_nut.new(descripcion, grasas , grasas_s , hidratos , azucares , proteinas , sal , grasas_mon , grasas_pol , polialcoholes , almidon , fibra , vitaminas , minerales)
|
86
|
+
etiqueta.valor_energetico()
|
87
|
+
|
88
|
+
|
89
|
+
@almuerzo << etiqueta
|
90
|
+
|
91
|
+
end
|
92
|
+
|
93
|
+
def cena(descripcion ,options = {})
|
94
|
+
|
95
|
+
|
96
|
+
grasas = options[:grasas] ? options[:grasas] : 0.0
|
97
|
+
grasas_s = options[:grasas_s] ? options[:grasas_s] : 0.0
|
98
|
+
hidratos = options[:hidratos] ? options[:hidratos] : 0.0
|
99
|
+
azucares = options[:azucares] ? options[:azucares] : 0.0
|
100
|
+
proteinas = options[:proteinas] ? options[:proteinas] : 0.0
|
101
|
+
sal = options[:sal] ? options[:sal] : 0.0
|
102
|
+
grasas_mon = options[:grasas_mon] ? options[:grasas_mon] : 0.0
|
103
|
+
grasas_pol = options[:grasas_pol] ? options[:grasas_pol] : 0.0
|
104
|
+
polialcoholes = options[:polialcoholes] ? options[:polialcoholes] : 0.0
|
105
|
+
almidon = options[:almidon] ? options[:almidon] : 0.0
|
106
|
+
fibra = options[:fibra] ? options[:fibra] : 0.0
|
107
|
+
vitaminas = options[:vitaminas] ? options[:vitaminas] : 0.0
|
108
|
+
minerales = options[:minerales] ? options[:minerales] : 0.0
|
109
|
+
|
110
|
+
etiqueta = Etiqueta_nut.new(descripcion, grasas , grasas_s , hidratos , azucares , proteinas , sal , grasas_mon , grasas_pol , polialcoholes , almidon , fibra , vitaminas , minerales)
|
111
|
+
etiqueta.valor_energetico()
|
112
|
+
|
113
|
+
@cena << etiqueta
|
114
|
+
|
115
|
+
end
|
116
|
+
|
117
|
+
|
118
|
+
def to_s
|
119
|
+
|
120
|
+
output = @nombre
|
121
|
+
output << " Composición nutricional"
|
122
|
+
output << "\n#{'=' * 170}\n\n"
|
123
|
+
output << "#{' ' * 24}grasas\thidratos\tazucares\tproteinas\tsal\tpolialcoholes\talmidon\tfibra\tvitaminas\tminerales\tvalor energetico\n"
|
124
|
+
output << "Desayuno\n"
|
125
|
+
output << @desayuno.join("\n")
|
126
|
+
output << "\n\nAlmuerzo\n"
|
127
|
+
output << @almuerzo.join("\n")
|
128
|
+
output << "\n\nCena\n"
|
129
|
+
output << @cena.join("\n")
|
130
|
+
output << "\n\n#{'=' * 170}\n\n"
|
131
|
+
output << "Valor energético total: #{valor_energetico_total}\t Ingesta mix: #{@min}\tIngesta max: #{@max}"
|
132
|
+
|
133
|
+
end
|
134
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
#Clase para el calculo de el menu dietetico de una persona
|
2
|
+
class Menu_dietetico
|
3
|
+
|
4
|
+
def initialize(persona)
|
5
|
+
@persona = persona
|
6
|
+
@alimentos = Dll.new
|
7
|
+
end
|
8
|
+
|
9
|
+
#Añade alimentos al menu
|
10
|
+
def añadir_alimento(alimento)
|
11
|
+
@alimentos.insert_tail(alimento)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
def valor_energetico
|
16
|
+
@alimentos.map{|x| x.valor_energetico}.reduce(:+)
|
17
|
+
end
|
18
|
+
|
19
|
+
#Verifica que el menu cumpla con las necesidades energeticas de la persona
|
20
|
+
def verificacion_menu
|
21
|
+
|
22
|
+
if(@alimentos.map{|x| x.valor_energetico}.reduce(:+).between?(@persona.gasto_energetico_total_-0.1*@persona.gasto_energetico_total_,@persona.gasto_energetico_total_+0.1*@persona.gasto_energetico_total_))
|
23
|
+
return true
|
24
|
+
else
|
25
|
+
return false
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
#Covierte el menu a una cadena
|
33
|
+
def to_s
|
34
|
+
|
35
|
+
@alimentos.to_s
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,75 @@
|
|
1
|
+
#Paciente de una consulta al que se le han calculado los datos antropometrícos
|
2
|
+
class Paciente_obeso < Paciente
|
3
|
+
|
4
|
+
attr_accessor :imc , :grasa , :rcc, :peso_teorico_ideal_, :gasto_energetico_basal_, :efecto_termogeno_, :factor_actividad_fisica_ , :gasto_energetico_actividad_fisica_ , :gasto_energetico_total_
|
5
|
+
|
6
|
+
def initialize(nombre,edad,genero,peso,talla,sexo,c_cintura,c_cadera)
|
7
|
+
super(nombre,edad,genero)
|
8
|
+
|
9
|
+
@imc = @valoracion.imc(peso,talla)
|
10
|
+
@grasa = @valoracion.grasa(sexo,peso,talla)
|
11
|
+
@rcc = @valoracion.rcc(c_cintura,c_cadera)
|
12
|
+
|
13
|
+
@peso = peso
|
14
|
+
@talla = talla
|
15
|
+
@sexo = sexo
|
16
|
+
@c_cintura = c_cintura
|
17
|
+
@c_cadera = c_cadera
|
18
|
+
end
|
19
|
+
|
20
|
+
#Convierte el Paciente_obeso en una cadena
|
21
|
+
def to_s
|
22
|
+
@valoracion.to_s
|
23
|
+
end
|
24
|
+
|
25
|
+
|
26
|
+
#Peso teórico ideal
|
27
|
+
def peso_teorico_ideal
|
28
|
+
@peso_teorico_ideal_ = ((@talla - 1.50) * 0.75 + 50)
|
29
|
+
end
|
30
|
+
|
31
|
+
#Gasto energético basal
|
32
|
+
def gasto_energetico_basal
|
33
|
+
|
34
|
+
if(@sexo == 0)
|
35
|
+
@gasto_energetico_basal_ = (10*@peso) + ( 6.25*@talla) - (5*@edad)-161
|
36
|
+
else
|
37
|
+
@gasto_energetico_basal_ = (10*@peso) + ( 6.25*@talla) - (5*@edad)+5
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
|
42
|
+
#Calcula el efecto termogeno de una persona
|
43
|
+
def efecto_termogeno
|
44
|
+
@efecto_termogeno_ = @gasto_energetico_basal_ * 0.10
|
45
|
+
end
|
46
|
+
|
47
|
+
#Calcula el factor de actividad fisica de una persona
|
48
|
+
def factor_actividad_fisica(nivel_actividad)
|
49
|
+
|
50
|
+
case nivel_actividad
|
51
|
+
when "Reposo"
|
52
|
+
@factor_de_actividad_fisica_ = 0.0
|
53
|
+
when "Actividad ligera"
|
54
|
+
@factor_de_actividad_fisica_ = 0.12
|
55
|
+
when "Actividad moderada"
|
56
|
+
@factor_de_actividad_fisica_ = 0.27
|
57
|
+
when "Actividad intensa"
|
58
|
+
@factor_de_actividad_fisica_ = 0.54
|
59
|
+
else
|
60
|
+
@factor_de_actividad_fisica_ = 0
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
|
65
|
+
#calcula el gasto de la actividad fisica de una perosna
|
66
|
+
def gasto_actividad_fisica
|
67
|
+
@gasto_actividad_fisica_ = @gasto_energetico_basal_ * @factor_de_actividad_fisica_
|
68
|
+
end
|
69
|
+
|
70
|
+
|
71
|
+
#Calcula el gasto energetico total de una persona
|
72
|
+
def gasto_energetico_total
|
73
|
+
@gasto_energetico_total_ = @gasto_energetico_basal_ + @efecto_termogeno_ + @gasto_actividad_fisica_
|
74
|
+
end
|
75
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
|
2
|
+
#Valoracion nutricional de un individuo
|
3
|
+
class Valores_nut
|
4
|
+
include Comparable
|
5
|
+
|
6
|
+
|
7
|
+
attr_reader :nombre, :edad, :genero
|
8
|
+
|
9
|
+
|
10
|
+
def initialize(nombre,edad,genero)
|
11
|
+
@nombre, @edad, @genero = nombre, edad, genero
|
12
|
+
end
|
13
|
+
|
14
|
+
#Calcula el Imc de un individuo
|
15
|
+
def imc(peso,talla)
|
16
|
+
@imc = (peso/(talla*talla))
|
17
|
+
end
|
18
|
+
|
19
|
+
#Calcula la grasa de un individuo
|
20
|
+
def grasa(sexo,peso,talla)
|
21
|
+
@grasa = 1.2*imc(peso,talla)+0.23*@edad-10.8*sexo-5.4
|
22
|
+
end
|
23
|
+
|
24
|
+
#Calcula el rcc de un individuo
|
25
|
+
def rcc(c_cintura,c_cadera)
|
26
|
+
@rcc = (c_cintura/c_cadera)
|
27
|
+
end
|
28
|
+
|
29
|
+
#Convierte la valoracion nutricional a una cadena
|
30
|
+
def to_s
|
31
|
+
"Nombre:#{@nombre}\nEdad:#{@edad}\nGenero:#{@genero}\nImc:#{@imc}\n%Grasa:#{@grasa}\nRcc:#{@rcc}"
|
32
|
+
end
|
33
|
+
|
34
|
+
#Metodo utilizado para comparaciones de valoraciones nutricionales
|
35
|
+
def <=>(other)
|
36
|
+
@nombre <=> other.nombre
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
|
data/lib/gema/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,197 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gema-alu0101040882
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Daniel Suarez
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-01-08 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.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
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: Esta es una gema que muestra la información nutricional
|
112
|
+
email:
|
113
|
+
- alu0101040882@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
|
+
- ".yardoc/checksums"
|
124
|
+
- ".yardoc/complete"
|
125
|
+
- ".yardoc/object_types"
|
126
|
+
- ".yardoc/objects/root.dat"
|
127
|
+
- ".yardoc/proxy_types"
|
128
|
+
- Gemfile
|
129
|
+
- Gemfile.lock
|
130
|
+
- Guardfile
|
131
|
+
- README.md
|
132
|
+
- Rakefile
|
133
|
+
- bin/bundle
|
134
|
+
- bin/console
|
135
|
+
- bin/htmldiff
|
136
|
+
- bin/ldiff
|
137
|
+
- bin/rake
|
138
|
+
- bin/rspec
|
139
|
+
- bin/setup
|
140
|
+
- doc/Dll.html
|
141
|
+
- doc/Dll/Node.html
|
142
|
+
- doc/Etiqueta_nut.html
|
143
|
+
- doc/Gema.html
|
144
|
+
- doc/Individuo.html
|
145
|
+
- doc/Menu_dietetico.html
|
146
|
+
- doc/Paciente.html
|
147
|
+
- doc/Paciente_obeso.html
|
148
|
+
- doc/Valores_nut.html
|
149
|
+
- doc/_index.html
|
150
|
+
- doc/class_list.html
|
151
|
+
- doc/css/common.css
|
152
|
+
- doc/css/full_list.css
|
153
|
+
- doc/css/style.css
|
154
|
+
- doc/file.README.html
|
155
|
+
- doc/file_list.html
|
156
|
+
- doc/frames.html
|
157
|
+
- doc/index.html
|
158
|
+
- doc/js/app.js
|
159
|
+
- doc/js/full_list.js
|
160
|
+
- doc/js/jquery.js
|
161
|
+
- doc/method_list.html
|
162
|
+
- doc/top-level-namespace.html
|
163
|
+
- gema.gemspec
|
164
|
+
- lib/gema.rb
|
165
|
+
- lib/gema/etiqueta_nut.rb
|
166
|
+
- lib/gema/individuo.rb
|
167
|
+
- lib/gema/list.rb
|
168
|
+
- lib/gema/menu.rb
|
169
|
+
- lib/gema/menu_dietetico.rb
|
170
|
+
- lib/gema/paciente.rb
|
171
|
+
- lib/gema/paciente_obeso.rb
|
172
|
+
- lib/gema/valores_nut.rb
|
173
|
+
- lib/gema/version.rb
|
174
|
+
homepage: https://github.com/ULL-ESIT-LPP-1819/tdd-alu0101040882
|
175
|
+
licenses: []
|
176
|
+
metadata: {}
|
177
|
+
post_install_message:
|
178
|
+
rdoc_options: []
|
179
|
+
require_paths:
|
180
|
+
- lib
|
181
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
182
|
+
requirements:
|
183
|
+
- - ">="
|
184
|
+
- !ruby/object:Gem::Version
|
185
|
+
version: '0'
|
186
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
187
|
+
requirements:
|
188
|
+
- - ">="
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
version: '0'
|
191
|
+
requirements: []
|
192
|
+
rubyforge_project:
|
193
|
+
rubygems_version: 2.7.7
|
194
|
+
signing_key:
|
195
|
+
specification_version: 4
|
196
|
+
summary: Etiqueta de información nutricional
|
197
|
+
test_files: []
|