examLPP 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +5 -0
  4. data/.rspec +2 -0
  5. data/.travis.yml +4 -0
  6. data/Gemfile +5 -0
  7. data/Guardfile +70 -0
  8. data/LICENSE.txt +22 -0
  9. data/README.md +19 -0
  10. data/Rakefile +6 -0
  11. data/coverage/.last_run.json +5 -0
  12. data/coverage/.resultset.json +714 -0
  13. data/doc/Exam.html +112 -0
  14. data/doc/Examen.html +319 -0
  15. data/doc/Gemfile.html +101 -0
  16. data/doc/Gemfile_lock.html +186 -0
  17. data/doc/Guardfile.html +169 -0
  18. data/doc/LICENSE_txt.html +116 -0
  19. data/doc/Lista.html +472 -0
  20. data/doc/Nodo.html +264 -0
  21. data/doc/Object.html +119 -0
  22. data/doc/Pregunta.html +346 -0
  23. data/doc/PreguntaS.html +338 -0
  24. data/doc/PreguntaVF.html +210 -0
  25. data/doc/README_md.html +120 -0
  26. data/doc/Rakefile.html +99 -0
  27. data/doc/created.rid +18 -0
  28. data/doc/exam_gemspec.html +127 -0
  29. data/doc/fonts.css +167 -0
  30. data/doc/fonts/Lato-Light.ttf +0 -0
  31. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  32. data/doc/fonts/Lato-Regular.ttf +0 -0
  33. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  34. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  35. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  36. data/doc/images/add.png +0 -0
  37. data/doc/images/arrow_up.png +0 -0
  38. data/doc/images/brick.png +0 -0
  39. data/doc/images/brick_link.png +0 -0
  40. data/doc/images/bug.png +0 -0
  41. data/doc/images/bullet_black.png +0 -0
  42. data/doc/images/bullet_toggle_minus.png +0 -0
  43. data/doc/images/bullet_toggle_plus.png +0 -0
  44. data/doc/images/date.png +0 -0
  45. data/doc/images/delete.png +0 -0
  46. data/doc/images/find.png +0 -0
  47. data/doc/images/loadingAnimation.gif +0 -0
  48. data/doc/images/macFFBgHack.png +0 -0
  49. data/doc/images/package.png +0 -0
  50. data/doc/images/page_green.png +0 -0
  51. data/doc/images/page_white_text.png +0 -0
  52. data/doc/images/page_white_width.png +0 -0
  53. data/doc/images/plugin.png +0 -0
  54. data/doc/images/ruby.png +0 -0
  55. data/doc/images/tag_blue.png +0 -0
  56. data/doc/images/tag_green.png +0 -0
  57. data/doc/images/transparent.png +0 -0
  58. data/doc/images/wrench.png +0 -0
  59. data/doc/images/wrench_orange.png +0 -0
  60. data/doc/images/zoom.png +0 -0
  61. data/doc/index.html +118 -0
  62. data/doc/js/darkfish.js +140 -0
  63. data/doc/js/jquery.js +18 -0
  64. data/doc/js/navigation.js +142 -0
  65. data/doc/js/search.js +109 -0
  66. data/doc/js/search_index.js +1 -0
  67. data/doc/js/searcher.js +228 -0
  68. data/doc/rdoc.css +580 -0
  69. data/doc/table_of_contents.html +222 -0
  70. data/exam.gemspec +32 -0
  71. data/lib/exam.rb +12 -0
  72. data/lib/exam/examen.rb +69 -0
  73. data/lib/exam/lista.rb +109 -0
  74. data/lib/exam/nodo.rb +14 -0
  75. data/lib/exam/pregunta.rb +38 -0
  76. data/lib/exam/preguntaMadre.rb +47 -0
  77. data/lib/exam/preguntaVF.rb +19 -0
  78. data/lib/exam/quiz.rb +44 -0
  79. data/lib/exam/version.rb +3 -0
  80. data/pkg/exam-0.0.1.gem +0 -0
  81. data/spec/exam_spec.rb +353 -0
  82. data/spec/spec_helper.rb +22 -0
  83. metadata +226 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a2ebc2433f0fd3c1282c69399196840f452b082e
4
+ data.tar.gz: 4358ecc9ab944ebb447078bcfcaa22284b6aabc0
5
+ SHA512:
6
+ metadata.gz: 6044658c93167642f0efc2d99d4abaccc81d9b20414ea2a65af8154fdf43fca5d143fc9d431bce6bbd56140dadbdeb1bba6e9b5ce9ba0679107d23284627865f
7
+ data.tar.gz: 607ebbc87670f513f8f25085b2ff6413113e7aaca5c6882f3500f7fdfc2ab4125dfc835d51e08ce45e6bde7461ac0a1f64fec7b18c15062932b496daeb885350
data/.coveralls.yml ADDED
@@ -0,0 +1 @@
1
+ service_name: travis-ci
data/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ *.DS_Store
2
+ *~
3
+ *.out
4
+ *.swp
5
+ *.lock
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - jruby-19mode # JRuby in 1.9 mode
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in exam.gemspec
4
+
5
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,70 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard :bundler do
5
+ watch('Gemfile')
6
+ # Uncomment next line if your Gemfile contains the `gemspec' command.
7
+ # watch(/^.+\.gemspec/)
8
+ end
9
+
10
+ # Note: The cmd option is now required due to the increasing number of ways
11
+ # rspec may be run, below are examples of the most common uses.
12
+ # * bundler: 'bundle exec rspec'
13
+ # * bundler binstubs: 'bin/rspec'
14
+ # * spring: 'bin/rsspec' (This will use spring if running and you have
15
+ # installed the spring binstubs per the docs)
16
+ # * zeus: 'zeus rspec' (requires the server to be started separetly)
17
+ # * 'just' rspec: 'rspec'
18
+ guard :rspec, cmd: 'bundle exec rspec' do
19
+ watch(%r{^spec/.+_spec\.rb$})
20
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
21
+ watch('spec/spec_helper.rb') { "spec" }
22
+
23
+ # Rails example
24
+ watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
25
+ watch(%r{^app/(.*)(\.erb|\.haml|\.slim)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
26
+ watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
27
+ watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
28
+ watch('config/routes.rb') { "spec/routing" }
29
+ watch('app/controllers/application_controller.rb') { "spec/controllers" }
30
+ watch('spec/rails_helper.rb') { "spec" }
31
+
32
+ # Capybara features specs
33
+ watch(%r{^app/views/(.+)/.*\.(erb|haml|slim)$}) { |m| "spec/features/#{m[1]}_spec.rb" }
34
+
35
+ # Turnip features and steps
36
+ watch(%r{^spec/acceptance/(.+)\.feature$})
37
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
38
+ end
39
+
40
+
41
+ # Note: The cmd option is now required due to the increasing number of ways
42
+ # rspec may be run, below are examples of the most common uses.
43
+ # * bundler: 'bundle exec rspec'
44
+ # * bundler binstubs: 'bin/rspec'
45
+ # * spring: 'bin/rsspec' (This will use spring if running and you have
46
+ # installed the spring binstubs per the docs)
47
+ # * zeus: 'zeus rspec' (requires the server to be started separetly)
48
+ # * 'just' rspec: 'rspec'
49
+ guard :rspec, cmd: 'bundle exec rspec' do
50
+ watch(%r{^spec/.+_spec\.rb$})
51
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
52
+ watch('spec/spec_helper.rb') { "spec" }
53
+
54
+ # Rails example
55
+ watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
56
+ watch(%r{^app/(.*)(\.erb|\.haml|\.slim)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
57
+ watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
58
+ watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
59
+ watch('config/routes.rb') { "spec/routing" }
60
+ watch('app/controllers/application_controller.rb') { "spec/controllers" }
61
+ watch('spec/rails_helper.rb') { "spec" }
62
+
63
+ # Capybara features specs
64
+ watch(%r{^app/views/(.+)/.*\.(erb|haml|slim)$}) { |m| "spec/features/#{m[1]}_spec.rb" }
65
+
66
+ # Turnip features and steps
67
+ watch(%r{^spec/acceptance/(.+)\.feature$})
68
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
69
+ end
70
+
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 alu0100775846
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,19 @@
1
+ #Practica 10 Programación Funcional. Funciones de orden superior.
2
+
3
+ Práctica de Laboratorio 10
4
+
5
+ Desarrollo dirigido por pruebas (Test Driven Development, TDD).
6
+
7
+ Trabajo:
8
+
9
+ * Diseñar e implementar un método, según el paradigma de programación funcional, que permita invertir el orden de las preguntas de un examen.
10
+ * Crear documentacion con RDoc o YARD
11
+
12
+ Realizado por:
13
+
14
+ * Juan Tareq Gonzalez de Chavez Perez
15
+
16
+ * Jose Manuel Hernandez Hernandez
17
+
18
+ [![Coverage Status](https://coveralls.io/repos/alu0100603866/prct09LPP/badge.png?branch=master)](https://coveralls.io/r/alu0100603866/prct09LPP?branch=master)
19
+ [![Build Status](https://travis-ci.org/alu0100603866/prct09LPP.svg?branch=master)](https://travis-ci.org/alu0100603866/prct09LPP)
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rspec/core/rake_task'
4
+ RSpec::Core::RakeTask.new
5
+ task :default => :spec
6
+
@@ -0,0 +1,5 @@
1
+ {
2
+ "result": {
3
+ "covered_percent": 95.85
4
+ }
5
+ }
@@ -0,0 +1,714 @@
1
+ {
2
+ "RSpec": {
3
+ "coverage": {
4
+ "/Users/juantareq/Desktop/prct11LPP/spec/exam_spec.rb": [
5
+ null,
6
+ 1,
7
+ 1,
8
+ null,
9
+ 1,
10
+ 1,
11
+ 1,
12
+ 1,
13
+ 1,
14
+ null,
15
+ null,
16
+ 1,
17
+ 1,
18
+ 1,
19
+ null,
20
+ null,
21
+ 1,
22
+ 1,
23
+ null,
24
+ null,
25
+ 1,
26
+ null,
27
+ 1,
28
+ null,
29
+ null,
30
+ 1,
31
+ null,
32
+ 1,
33
+ null,
34
+ null,
35
+ 1,
36
+ 1,
37
+ null,
38
+ null,
39
+ null,
40
+ null,
41
+ 1,
42
+ null,
43
+ 1,
44
+ 1,
45
+ 1,
46
+ 1,
47
+ 1,
48
+ null,
49
+ 1,
50
+ 1,
51
+ 1,
52
+ null,
53
+ 1,
54
+ 1,
55
+ 1,
56
+ 1,
57
+ 1,
58
+ null,
59
+ 1,
60
+ 1,
61
+ 1,
62
+ 1,
63
+ 1,
64
+ null,
65
+ 1,
66
+ 1,
67
+ 1,
68
+ null,
69
+ 1,
70
+ 1,
71
+ 1,
72
+ 1,
73
+ 1,
74
+ null,
75
+ 1,
76
+ 1,
77
+ 1,
78
+ 1,
79
+ 1,
80
+ 1,
81
+ null,
82
+ null,
83
+ null,
84
+ null,
85
+ 1,
86
+ 1,
87
+ null,
88
+ 1,
89
+ 7,
90
+ 7,
91
+ 7,
92
+ 7,
93
+ null,
94
+ null,
95
+ 1,
96
+ 1,
97
+ 1,
98
+ null,
99
+ null,
100
+ 1,
101
+ 1,
102
+ 1,
103
+ 1,
104
+ 1,
105
+ 1,
106
+ null,
107
+ null,
108
+ 1,
109
+ 1,
110
+ 1,
111
+ 1,
112
+ 1,
113
+ null,
114
+ null,
115
+ 1,
116
+ 1,
117
+ 1,
118
+ 1,
119
+ 1,
120
+ 1,
121
+ 1,
122
+ 1,
123
+ 1,
124
+ 1,
125
+ null,
126
+ null,
127
+ null,
128
+ 1,
129
+ 1,
130
+ 1,
131
+ 1,
132
+ 1,
133
+ 1,
134
+ 1,
135
+ 1,
136
+ 1,
137
+ 1,
138
+ null,
139
+ null,
140
+ 1,
141
+ 1,
142
+ 1,
143
+ 1,
144
+ 1,
145
+ 1,
146
+ 1,
147
+ 1,
148
+ 1,
149
+ 1,
150
+ null,
151
+ null,
152
+ 1,
153
+ 1,
154
+ 1,
155
+ null,
156
+ null,
157
+ null,
158
+ 1,
159
+ 1,
160
+ 9,
161
+ 9,
162
+ null,
163
+ 9,
164
+ null,
165
+ null,
166
+ 1,
167
+ 1,
168
+ 1,
169
+ null,
170
+ null,
171
+ 1,
172
+ 1,
173
+ null,
174
+ null,
175
+ 1,
176
+ 1,
177
+ null,
178
+ null,
179
+ null,
180
+ 1,
181
+ null,
182
+ 1,
183
+ null,
184
+ 1,
185
+ 1,
186
+ 1,
187
+ 1,
188
+ 1,
189
+ null,
190
+ 1,
191
+ 1,
192
+ 1,
193
+ null,
194
+ 1,
195
+ 1,
196
+ 1,
197
+ 1,
198
+ 1,
199
+ null,
200
+ 1,
201
+ 1,
202
+ 1,
203
+ 1,
204
+ 1,
205
+ null,
206
+ 1,
207
+ null,
208
+ 1,
209
+ 1,
210
+ 1,
211
+ 1,
212
+ 1,
213
+ null,
214
+ 1,
215
+ 1,
216
+ 1,
217
+ 1,
218
+ 1,
219
+ 1,
220
+ null,
221
+ null,
222
+ 1,
223
+ 1,
224
+ 1,
225
+ 5,
226
+ 5,
227
+ null,
228
+ 1,
229
+ null,
230
+ null,
231
+ 1,
232
+ 1,
233
+ null,
234
+ null,
235
+ 1,
236
+ 1,
237
+ null,
238
+ null,
239
+ 1,
240
+ 4,
241
+ null,
242
+ null,
243
+ 1,
244
+ 1,
245
+ null,
246
+ null,
247
+ 1,
248
+ 1,
249
+ null,
250
+ null,
251
+ null,
252
+ null,
253
+ null,
254
+ 1,
255
+ 1,
256
+ 1,
257
+ 1,
258
+ 1,
259
+ 1,
260
+ 1,
261
+ 1,
262
+ null,
263
+ 1,
264
+ 1,
265
+ null,
266
+ 1,
267
+ 1,
268
+ 1,
269
+ 1,
270
+ 1,
271
+ 1,
272
+ null,
273
+ 1,
274
+ 1,
275
+ 1,
276
+ 1,
277
+ 1,
278
+ 1,
279
+ null,
280
+ 1,
281
+ 1,
282
+ null,
283
+ 1,
284
+ 1,
285
+ 1,
286
+ 1,
287
+ 1,
288
+ 1,
289
+ 1,
290
+ 1,
291
+ 1,
292
+ 1,
293
+ 1,
294
+ null,
295
+ null,
296
+ 1,
297
+ 1,
298
+ 1,
299
+ 1,
300
+ 1,
301
+ 1,
302
+ 1,
303
+ null,
304
+ null,
305
+ 1,
306
+ 1,
307
+ 1,
308
+ null,
309
+ null,
310
+ null,
311
+ 1,
312
+ 1,
313
+ 1,
314
+ 1,
315
+ 1,
316
+ 1,
317
+ 1,
318
+ null,
319
+ null,
320
+ 1,
321
+ 1,
322
+ 1,
323
+ 1,
324
+ null,
325
+ null,
326
+ 1,
327
+ 1,
328
+ 1,
329
+ null,
330
+ null,
331
+ null,
332
+ 1,
333
+ 1,
334
+ 1,
335
+ 1,
336
+ 1,
337
+ 1,
338
+ 1,
339
+ 1,
340
+ 1,
341
+ 1,
342
+ 1,
343
+ 1,
344
+ null,
345
+ 1,
346
+ 1,
347
+ null,
348
+ null,
349
+ null,
350
+ 1,
351
+ null,
352
+ null,
353
+ null,
354
+ 1,
355
+ null,
356
+ null,
357
+ null
358
+ ],
359
+ "/Users/juantareq/Desktop/prct11LPP/lib/exam.rb": [
360
+ null,
361
+ 1,
362
+ 1,
363
+ 1,
364
+ 1,
365
+ 1,
366
+ 1,
367
+ 1,
368
+ null,
369
+ 1,
370
+ null,
371
+ null
372
+ ],
373
+ "/Users/juantareq/Desktop/prct11LPP/lib/exam/preguntaMadre.rb": [
374
+ null,
375
+ null,
376
+ null,
377
+ 1,
378
+ 1,
379
+ 1,
380
+ null,
381
+ 1,
382
+ null,
383
+ null,
384
+ 1,
385
+ 48,
386
+ 48,
387
+ 48,
388
+ null,
389
+ null,
390
+ null,
391
+ 1,
392
+ 43,
393
+ null,
394
+ null,
395
+ null,
396
+ null,
397
+ null,
398
+ 1,
399
+ 4,
400
+ null,
401
+ null,
402
+ null,
403
+ null,
404
+ 1,
405
+ 9,
406
+ null,
407
+ 7,
408
+ null,
409
+ null,
410
+ 2,
411
+ null,
412
+ null,
413
+ 9,
414
+ 7,
415
+ null,
416
+ 2,
417
+ null,
418
+ null,
419
+ null,
420
+ null
421
+ ],
422
+ "/Users/juantareq/Desktop/prct11LPP/lib/exam/pregunta.rb": [
423
+ null,
424
+ null,
425
+ 1,
426
+ null,
427
+ 1,
428
+ null,
429
+ null,
430
+ 1,
431
+ 42,
432
+ 42,
433
+ null,
434
+ null,
435
+ null,
436
+ null,
437
+ 1,
438
+ 14,
439
+ null,
440
+ null,
441
+ null,
442
+ 1,
443
+ 49,
444
+ null,
445
+ null,
446
+ null,
447
+ 1,
448
+ 14,
449
+ 14,
450
+ 52,
451
+ null,
452
+ 14,
453
+ null,
454
+ null,
455
+ null,
456
+ 1,
457
+ 13,
458
+ null,
459
+ null,
460
+ null
461
+ ],
462
+ "/Users/juantareq/Desktop/prct11LPP/lib/exam/preguntaVF.rb": [
463
+ null,
464
+ null,
465
+ null,
466
+ 1,
467
+ null,
468
+ 1,
469
+ 6,
470
+ 6,
471
+ null,
472
+ null,
473
+ null,
474
+ null,
475
+ 1,
476
+ 11,
477
+ 11,
478
+ 11,
479
+ 11,
480
+ null,
481
+ null
482
+ ],
483
+ "/Users/juantareq/Desktop/prct11LPP/lib/exam/lista.rb": [
484
+ null,
485
+ 1,
486
+ null,
487
+ null,
488
+ 1,
489
+ null,
490
+ null,
491
+ 1,
492
+ 1,
493
+ 1,
494
+ 127,
495
+ null,
496
+ null,
497
+ null,
498
+ null,
499
+ 1,
500
+ 1,
501
+ null,
502
+ null,
503
+ 1,
504
+ 12,
505
+ 12,
506
+ null,
507
+ null,
508
+ null,
509
+ 1,
510
+ 60,
511
+ null,
512
+ 60,
513
+ 56,
514
+ null,
515
+ 4,
516
+ null,
517
+ null,
518
+ 60,
519
+ null,
520
+ 60,
521
+ 16,
522
+ 16,
523
+ null,
524
+ null,
525
+ 60,
526
+ 43,
527
+ null,
528
+ null,
529
+ 60,
530
+ null,
531
+ null,
532
+ 60,
533
+ null,
534
+ null,
535
+ null,
536
+ null,
537
+ null,
538
+ 1,
539
+ 2,
540
+ 2,
541
+ 0,
542
+ 0,
543
+ null,
544
+ 2,
545
+ 2,
546
+ null,
547
+ 2,
548
+ null,
549
+ null,
550
+ null,
551
+ 1,
552
+ 78,
553
+ null,
554
+ null,
555
+ null,
556
+ 1,
557
+ 13,
558
+ null,
559
+ null,
560
+ null,
561
+ 1,
562
+ 20,
563
+ null,
564
+ 20,
565
+ 86,
566
+ 85,
567
+ null,
568
+ null,
569
+ null,
570
+ null,
571
+ 1,
572
+ 6,
573
+ 6,
574
+ 6,
575
+ 6,
576
+ 6,
577
+ 36,
578
+ 24,
579
+ 24,
580
+ null,
581
+ null,
582
+ null,
583
+ null,
584
+ null,
585
+ 1,
586
+ 0,
587
+ 0,
588
+ null,
589
+ 0,
590
+ null,
591
+ null,
592
+ null
593
+ ],
594
+ "/Users/juantareq/Desktop/prct11LPP/lib/exam/examen.rb": [
595
+ null,
596
+ null,
597
+ null,
598
+ null,
599
+ 1,
600
+ 1,
601
+ null,
602
+ null,
603
+ 1,
604
+ 5,
605
+ 5,
606
+ 5,
607
+ null,
608
+ null,
609
+ null,
610
+ null,
611
+ 1,
612
+ 3,
613
+ 3,
614
+ 3,
615
+ 3,
616
+ 10,
617
+ 4,
618
+ 4,
619
+ 4,
620
+ null,
621
+ 3,
622
+ null,
623
+ null,
624
+ null,
625
+ 1,
626
+ 1,
627
+ 6,
628
+ 1,
629
+ null,
630
+ null,
631
+ null,
632
+ 1,
633
+ 0,
634
+ 0,
635
+ 0,
636
+ 0,
637
+ 0,
638
+ 0,
639
+ 0,
640
+ 0,
641
+ null,
642
+ 0,
643
+ null,
644
+ null,
645
+ 0,
646
+ null,
647
+ null,
648
+ null,
649
+ null,
650
+ 1,
651
+ 1,
652
+ 1,
653
+ 1,
654
+ 5,
655
+ 5,
656
+ 5,
657
+ 5,
658
+ null,
659
+ 5,
660
+ null,
661
+ 1,
662
+ null,
663
+ null
664
+ ],
665
+ "/Users/juantareq/Desktop/prct11LPP/lib/exam/quiz.rb": [
666
+ 1,
667
+ null,
668
+ 1,
669
+ 1,
670
+ null,
671
+ 1,
672
+ 1,
673
+ 0,
674
+ null,
675
+ 1,
676
+ null,
677
+ null,
678
+ null,
679
+ 1,
680
+ null,
681
+ null,
682
+ 1,
683
+ 1,
684
+ null,
685
+ null,
686
+ 1,
687
+ 1,
688
+ 1,
689
+ 1,
690
+ 2,
691
+ 2,
692
+ 2,
693
+ null,
694
+ 0,
695
+ null,
696
+ null,
697
+ null,
698
+ 1,
699
+ null,
700
+ null,
701
+ 1,
702
+ 1,
703
+ null,
704
+ 1,
705
+ null,
706
+ 1,
707
+ null,
708
+ null,
709
+ null
710
+ ]
711
+ },
712
+ "timestamp": 1418249696
713
+ }
714
+ }