prct06-TDD 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 (85) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +7 -0
  5. data/Changelog.md +275 -0
  6. data/Gemfile +5 -0
  7. data/Gemfile.lock +93 -0
  8. data/Guardfile +83 -0
  9. data/README.md +39 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +14 -0
  12. data/bin/setup +8 -0
  13. data/docs/Alimento.html +1039 -0
  14. data/docs/Changelog_md.html +280 -0
  15. data/docs/Dieta.html +272 -0
  16. data/docs/Gema.html +110 -0
  17. data/docs/Gema/Error.html +103 -0
  18. data/docs/Gemfile.html +100 -0
  19. data/docs/Gemfile_lock.html +179 -0
  20. data/docs/Guardfile.html +171 -0
  21. data/docs/ListaDobleEnlazada.html +542 -0
  22. data/docs/Object.html +117 -0
  23. data/docs/Plato.html +567 -0
  24. data/docs/Plato/CompareMode.html +117 -0
  25. data/docs/PlatoEficienciaEnergetica.html +316 -0
  26. data/docs/README_md.html +143 -0
  27. data/docs/Rakefile.html +102 -0
  28. data/docs/bin/setup.html +102 -0
  29. data/docs/created.rid +23 -0
  30. data/docs/css/fonts.css +167 -0
  31. data/docs/css/rdoc.css +590 -0
  32. data/docs/fonts/Lato-Light.ttf +0 -0
  33. data/docs/fonts/Lato-LightItalic.ttf +0 -0
  34. data/docs/fonts/Lato-Regular.ttf +0 -0
  35. data/docs/fonts/Lato-RegularItalic.ttf +0 -0
  36. data/docs/fonts/SourceCodePro-Bold.ttf +0 -0
  37. data/docs/fonts/SourceCodePro-Regular.ttf +0 -0
  38. data/docs/images/add.png +0 -0
  39. data/docs/images/arrow_up.png +0 -0
  40. data/docs/images/brick.png +0 -0
  41. data/docs/images/brick_link.png +0 -0
  42. data/docs/images/bug.png +0 -0
  43. data/docs/images/bullet_black.png +0 -0
  44. data/docs/images/bullet_toggle_minus.png +0 -0
  45. data/docs/images/bullet_toggle_plus.png +0 -0
  46. data/docs/images/date.png +0 -0
  47. data/docs/images/delete.png +0 -0
  48. data/docs/images/find.png +0 -0
  49. data/docs/images/loadingAnimation.gif +0 -0
  50. data/docs/images/macFFBgHack.png +0 -0
  51. data/docs/images/package.png +0 -0
  52. data/docs/images/page_green.png +0 -0
  53. data/docs/images/page_white_text.png +0 -0
  54. data/docs/images/page_white_width.png +0 -0
  55. data/docs/images/plugin.png +0 -0
  56. data/docs/images/ruby.png +0 -0
  57. data/docs/images/tag_blue.png +0 -0
  58. data/docs/images/tag_green.png +0 -0
  59. data/docs/images/transparent.png +0 -0
  60. data/docs/images/wrench.png +0 -0
  61. data/docs/images/wrench_orange.png +0 -0
  62. data/docs/images/zoom.png +0 -0
  63. data/docs/index.html +123 -0
  64. data/docs/js/darkfish.js +161 -0
  65. data/docs/js/jquery.js +4 -0
  66. data/docs/js/navigation.js +141 -0
  67. data/docs/js/navigation.js.gz +0 -0
  68. data/docs/js/search.js +109 -0
  69. data/docs/js/search_index.js +1 -0
  70. data/docs/js/search_index.js.gz +0 -0
  71. data/docs/js/searcher.js +229 -0
  72. data/docs/js/searcher.js.gz +0 -0
  73. data/docs/prct06-TDD_gemspec.html +134 -0
  74. data/docs/table_of_contents.html +381 -0
  75. data/lib/Alimento.rb +205 -0
  76. data/lib/Dieta.rb +28 -0
  77. data/lib/Menu.rb +61 -0
  78. data/lib/Plato.rb +138 -0
  79. data/lib/Plato.rb.save +110 -0
  80. data/lib/PlatoEficienciaEnergetica.rb +32 -0
  81. data/lib/gema.rb +12 -0
  82. data/lib/gema/ListaDobleEnlazada.rb +103 -0
  83. data/lib/gema/version.rb +3 -0
  84. data/prct06-TDD.gemspec +37 -0
  85. metadata +214 -0
@@ -0,0 +1,3 @@
1
+ module Gema
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,37 @@
1
+ lib = File.expand_path("lib", __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "gema/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "prct06-TDD"
7
+ spec.version = Gema::VERSION
8
+ spec.authors = ["Javier Duque Melguizo"]
9
+ spec.email = ["alu0101160337@ull.edu.es"]
10
+
11
+ spec.summary = %q{Es un ejemplo de test-driven development}
12
+ spec.description = %q{En esta practica se plantea para aprender a usar bundle, rspec y como funciona el desarrollo basado en TDD.}
13
+ spec.homepage = "https://github.com/ULL-ESIT-LPP-1920/tdd-JDM-ULL-93"
14
+
15
+ # spec.metadata["allowed_push_host"] = "https://github.com/ULL-ESIT-LPP-1920/tdd-JDM-ULL-93"
16
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://github.com/ULL-ESIT-LPP-1920/tdd-JDM-ULL-93"
19
+ spec.metadata["changelog_uri"] = "https://github.com/ULL-ESIT-LPP-1920/tdd-JDM-ULL-93"
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_development_dependency "bundler", "~> 2.0"
31
+ spec.add_development_dependency "rake", "~> 10.0"
32
+ spec.add_development_dependency "rspec", "~> 3.0"
33
+ spec.add_development_dependency "guard"
34
+ spec.add_development_dependency "guard-rspec"
35
+ spec.add_development_dependency "guard-bundler"
36
+ # spec.add_development_dependency "gema/ListaDobleEnlazada"
37
+ end
metadata ADDED
@@ -0,0 +1,214 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: prct06-TDD
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Javier Duque Melguizo
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-01-10 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
+ description: En esta practica se plantea para aprender a usar bundle, rspec y como
98
+ funciona el desarrollo basado en TDD.
99
+ email:
100
+ - alu0101160337@ull.edu.es
101
+ executables: []
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - ".gitignore"
106
+ - ".rspec"
107
+ - ".travis.yml"
108
+ - Changelog.md
109
+ - Gemfile
110
+ - Gemfile.lock
111
+ - Guardfile
112
+ - README.md
113
+ - Rakefile
114
+ - bin/console
115
+ - bin/setup
116
+ - docs/Alimento.html
117
+ - docs/Changelog_md.html
118
+ - docs/Dieta.html
119
+ - docs/Gema.html
120
+ - docs/Gema/Error.html
121
+ - docs/Gemfile.html
122
+ - docs/Gemfile_lock.html
123
+ - docs/Guardfile.html
124
+ - docs/ListaDobleEnlazada.html
125
+ - docs/Object.html
126
+ - docs/Plato.html
127
+ - docs/Plato/CompareMode.html
128
+ - docs/PlatoEficienciaEnergetica.html
129
+ - docs/README_md.html
130
+ - docs/Rakefile.html
131
+ - docs/bin/setup.html
132
+ - docs/created.rid
133
+ - docs/css/fonts.css
134
+ - docs/css/rdoc.css
135
+ - docs/fonts/Lato-Light.ttf
136
+ - docs/fonts/Lato-LightItalic.ttf
137
+ - docs/fonts/Lato-Regular.ttf
138
+ - docs/fonts/Lato-RegularItalic.ttf
139
+ - docs/fonts/SourceCodePro-Bold.ttf
140
+ - docs/fonts/SourceCodePro-Regular.ttf
141
+ - docs/images/add.png
142
+ - docs/images/arrow_up.png
143
+ - docs/images/brick.png
144
+ - docs/images/brick_link.png
145
+ - docs/images/bug.png
146
+ - docs/images/bullet_black.png
147
+ - docs/images/bullet_toggle_minus.png
148
+ - docs/images/bullet_toggle_plus.png
149
+ - docs/images/date.png
150
+ - docs/images/delete.png
151
+ - docs/images/find.png
152
+ - docs/images/loadingAnimation.gif
153
+ - docs/images/macFFBgHack.png
154
+ - docs/images/package.png
155
+ - docs/images/page_green.png
156
+ - docs/images/page_white_text.png
157
+ - docs/images/page_white_width.png
158
+ - docs/images/plugin.png
159
+ - docs/images/ruby.png
160
+ - docs/images/tag_blue.png
161
+ - docs/images/tag_green.png
162
+ - docs/images/transparent.png
163
+ - docs/images/wrench.png
164
+ - docs/images/wrench_orange.png
165
+ - docs/images/zoom.png
166
+ - docs/index.html
167
+ - docs/js/darkfish.js
168
+ - docs/js/jquery.js
169
+ - docs/js/navigation.js
170
+ - docs/js/navigation.js.gz
171
+ - docs/js/search.js
172
+ - docs/js/search_index.js
173
+ - docs/js/search_index.js.gz
174
+ - docs/js/searcher.js
175
+ - docs/js/searcher.js.gz
176
+ - docs/prct06-TDD_gemspec.html
177
+ - docs/table_of_contents.html
178
+ - lib/Alimento.rb
179
+ - lib/Dieta.rb
180
+ - lib/Menu.rb
181
+ - lib/Plato.rb
182
+ - lib/Plato.rb.save
183
+ - lib/PlatoEficienciaEnergetica.rb
184
+ - lib/gema.rb
185
+ - lib/gema/ListaDobleEnlazada.rb
186
+ - lib/gema/version.rb
187
+ - prct06-TDD.gemspec
188
+ homepage: https://github.com/ULL-ESIT-LPP-1920/tdd-JDM-ULL-93
189
+ licenses: []
190
+ metadata:
191
+ allowed_push_host: https://rubygems.org
192
+ homepage_uri: https://github.com/ULL-ESIT-LPP-1920/tdd-JDM-ULL-93
193
+ source_code_uri: https://github.com/ULL-ESIT-LPP-1920/tdd-JDM-ULL-93
194
+ changelog_uri: https://github.com/ULL-ESIT-LPP-1920/tdd-JDM-ULL-93
195
+ post_install_message:
196
+ rdoc_options: []
197
+ require_paths:
198
+ - lib
199
+ required_ruby_version: !ruby/object:Gem::Requirement
200
+ requirements:
201
+ - - ">="
202
+ - !ruby/object:Gem::Version
203
+ version: '0'
204
+ required_rubygems_version: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ requirements: []
210
+ rubygems_version: 3.0.3
211
+ signing_key:
212
+ specification_version: 4
213
+ summary: Es un ejemplo de test-driven development
214
+ test_files: []