alimentacion 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +7 -0
  5. data/Gemfile +4 -0
  6. data/Gemfile.lock +95 -0
  7. data/Guardfile +82 -0
  8. data/README.md +9 -0
  9. data/Rakefile +6 -0
  10. data/alimentacion.gemspec +38 -0
  11. data/bin/console +14 -0
  12. data/bin/setup +8 -0
  13. data/docs/Alimentacion.html +110 -0
  14. data/docs/Alimentacion/Error.html +103 -0
  15. data/docs/Alimentos.html +529 -0
  16. data/docs/Eficiencia_Energetica.html +484 -0
  17. data/docs/Gemfile.html +98 -0
  18. data/docs/Gemfile_lock.html +177 -0
  19. data/docs/Guardfile.html +165 -0
  20. data/docs/Lista.html +622 -0
  21. data/docs/Object.html +127 -0
  22. data/docs/Plato.html +504 -0
  23. data/docs/README_md.html +104 -0
  24. data/docs/Rakefile.html +100 -0
  25. data/docs/alimentacion_gemspec.html +132 -0
  26. data/docs/bin/setup.html +100 -0
  27. data/docs/created.rid +16 -0
  28. data/docs/css/fonts.css +167 -0
  29. data/docs/css/rdoc.css +590 -0
  30. data/docs/fonts/Lato-Light.ttf +0 -0
  31. data/docs/fonts/Lato-LightItalic.ttf +0 -0
  32. data/docs/fonts/Lato-Regular.ttf +0 -0
  33. data/docs/fonts/Lato-RegularItalic.ttf +0 -0
  34. data/docs/fonts/SourceCodePro-Bold.ttf +0 -0
  35. data/docs/fonts/SourceCodePro-Regular.ttf +0 -0
  36. data/docs/images/add.png +0 -0
  37. data/docs/images/arrow_up.png +0 -0
  38. data/docs/images/brick.png +0 -0
  39. data/docs/images/brick_link.png +0 -0
  40. data/docs/images/bug.png +0 -0
  41. data/docs/images/bullet_black.png +0 -0
  42. data/docs/images/bullet_toggle_minus.png +0 -0
  43. data/docs/images/bullet_toggle_plus.png +0 -0
  44. data/docs/images/date.png +0 -0
  45. data/docs/images/delete.png +0 -0
  46. data/docs/images/find.png +0 -0
  47. data/docs/images/loadingAnimation.gif +0 -0
  48. data/docs/images/macFFBgHack.png +0 -0
  49. data/docs/images/package.png +0 -0
  50. data/docs/images/page_green.png +0 -0
  51. data/docs/images/page_white_text.png +0 -0
  52. data/docs/images/page_white_width.png +0 -0
  53. data/docs/images/plugin.png +0 -0
  54. data/docs/images/ruby.png +0 -0
  55. data/docs/images/tag_blue.png +0 -0
  56. data/docs/images/tag_green.png +0 -0
  57. data/docs/images/transparent.png +0 -0
  58. data/docs/images/wrench.png +0 -0
  59. data/docs/images/wrench_orange.png +0 -0
  60. data/docs/images/zoom.png +0 -0
  61. data/docs/index.html +117 -0
  62. data/docs/js/darkfish.js +161 -0
  63. data/docs/js/jquery.js +4 -0
  64. data/docs/js/navigation.js +141 -0
  65. data/docs/js/navigation.js.gz +0 -0
  66. data/docs/js/search.js +109 -0
  67. data/docs/js/search_index.js +1 -0
  68. data/docs/js/search_index.js.gz +0 -0
  69. data/docs/js/searcher.js +229 -0
  70. data/docs/js/searcher.js.gz +0 -0
  71. data/docs/table_of_contents.html +293 -0
  72. data/lib/alimentacion.rb +11 -0
  73. data/lib/alimentacion/alimentos.rb +65 -0
  74. data/lib/alimentacion/lista.rb +136 -0
  75. data/lib/alimentacion/menu_dsl.rb +36 -0
  76. data/lib/alimentacion/plato_dsl.rb +45 -0
  77. data/lib/alimentacion/platos.rb +199 -0
  78. data/lib/alimentacion/version.rb +3 -0
  79. metadata +221 -0
@@ -0,0 +1,3 @@
1
+ module Alimentacion
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,221 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: alimentacion
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - David Hernandez
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-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: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
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: Representación de alimentos con Programación Orientada a Objetos, utilizando
112
+ Bundler, TDD y Guard
113
+ email:
114
+ - alu0101048239@ull.edu.es
115
+ executables: []
116
+ extensions: []
117
+ extra_rdoc_files: []
118
+ files:
119
+ - ".gitignore"
120
+ - ".rspec"
121
+ - ".travis.yml"
122
+ - Gemfile
123
+ - Gemfile.lock
124
+ - Guardfile
125
+ - README.md
126
+ - Rakefile
127
+ - alimentacion.gemspec
128
+ - bin/console
129
+ - bin/setup
130
+ - docs/Alimentacion.html
131
+ - docs/Alimentacion/Error.html
132
+ - docs/Alimentos.html
133
+ - docs/Eficiencia_Energetica.html
134
+ - docs/Gemfile.html
135
+ - docs/Gemfile_lock.html
136
+ - docs/Guardfile.html
137
+ - docs/Lista.html
138
+ - docs/Object.html
139
+ - docs/Plato.html
140
+ - docs/README_md.html
141
+ - docs/Rakefile.html
142
+ - docs/alimentacion_gemspec.html
143
+ - docs/bin/setup.html
144
+ - docs/created.rid
145
+ - docs/css/fonts.css
146
+ - docs/css/rdoc.css
147
+ - docs/fonts/Lato-Light.ttf
148
+ - docs/fonts/Lato-LightItalic.ttf
149
+ - docs/fonts/Lato-Regular.ttf
150
+ - docs/fonts/Lato-RegularItalic.ttf
151
+ - docs/fonts/SourceCodePro-Bold.ttf
152
+ - docs/fonts/SourceCodePro-Regular.ttf
153
+ - docs/images/add.png
154
+ - docs/images/arrow_up.png
155
+ - docs/images/brick.png
156
+ - docs/images/brick_link.png
157
+ - docs/images/bug.png
158
+ - docs/images/bullet_black.png
159
+ - docs/images/bullet_toggle_minus.png
160
+ - docs/images/bullet_toggle_plus.png
161
+ - docs/images/date.png
162
+ - docs/images/delete.png
163
+ - docs/images/find.png
164
+ - docs/images/loadingAnimation.gif
165
+ - docs/images/macFFBgHack.png
166
+ - docs/images/package.png
167
+ - docs/images/page_green.png
168
+ - docs/images/page_white_text.png
169
+ - docs/images/page_white_width.png
170
+ - docs/images/plugin.png
171
+ - docs/images/ruby.png
172
+ - docs/images/tag_blue.png
173
+ - docs/images/tag_green.png
174
+ - docs/images/transparent.png
175
+ - docs/images/wrench.png
176
+ - docs/images/wrench_orange.png
177
+ - docs/images/zoom.png
178
+ - docs/index.html
179
+ - docs/js/darkfish.js
180
+ - docs/js/jquery.js
181
+ - docs/js/navigation.js
182
+ - docs/js/navigation.js.gz
183
+ - docs/js/search.js
184
+ - docs/js/search_index.js
185
+ - docs/js/search_index.js.gz
186
+ - docs/js/searcher.js
187
+ - docs/js/searcher.js.gz
188
+ - docs/table_of_contents.html
189
+ - lib/alimentacion.rb
190
+ - lib/alimentacion/alimentos.rb
191
+ - lib/alimentacion/lista.rb
192
+ - lib/alimentacion/menu_dsl.rb
193
+ - lib/alimentacion/plato_dsl.rb
194
+ - lib/alimentacion/platos.rb
195
+ - lib/alimentacion/version.rb
196
+ homepage: https://github.com/ULL-ESIT-LPP-1920/tdd-alu0101048239.git
197
+ licenses: []
198
+ metadata:
199
+ homepage_uri: https://github.com/ULL-ESIT-LPP-1920/tdd-alu0101048239.git
200
+ source_code_uri: https://github.com/ULL-ESIT-LPP-1920/tdd-alu0101048239.git
201
+ changelog_uri: https://github.com/ULL-ESIT-LPP-1920/tdd-alu0101048239.git
202
+ post_install_message:
203
+ rdoc_options: []
204
+ require_paths:
205
+ - lib
206
+ required_ruby_version: !ruby/object:Gem::Requirement
207
+ requirements:
208
+ - - ">="
209
+ - !ruby/object:Gem::Version
210
+ version: '0'
211
+ required_rubygems_version: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: '0'
216
+ requirements: []
217
+ rubygems_version: 3.0.3
218
+ signing_key:
219
+ specification_version: 4
220
+ summary: Representación de alimentos.
221
+ test_files: []