P5_T_34 0.1.1

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 (114) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +24 -0
  4. data/.rspec +2 -0
  5. data/.travis.yml +9 -0
  6. data/Gemfile +4 -0
  7. data/Guardfile +15 -0
  8. data/LICENSE.txt +22 -0
  9. data/P5_T_34.gemspec +31 -0
  10. data/README.md +35 -0
  11. data/Rakefile +15 -0
  12. data/contributors.txt +1 -0
  13. data/doc/Gemfile.html +151 -0
  14. data/doc/Gemfile_lock.html +238 -0
  15. data/doc/Guardfile.html +166 -0
  16. data/doc/LICENSE_txt.html +168 -0
  17. data/doc/P5T34.html +112 -0
  18. data/doc/P5_T_34/Exam.html +240 -0
  19. data/doc/P5_T_34/Interface.html +501 -0
  20. data/doc/P5_T_34/LList.html +481 -0
  21. data/doc/P5_T_34/Question.html +406 -0
  22. data/doc/P5_T_34/QuestionVF.html +170 -0
  23. data/doc/P5_T_34.html +113 -0
  24. data/doc/P5_T_34_gemspec.html +179 -0
  25. data/doc/README_md.html +203 -0
  26. data/doc/Rakefile.html +162 -0
  27. data/doc/contributors_txt.html +148 -0
  28. data/doc/created.rid +79 -0
  29. data/doc/doc/Gemfile_html.html +250 -0
  30. data/doc/doc/Gemfile_lock_html.html +330 -0
  31. data/doc/doc/Guardfile_html.html +274 -0
  32. data/doc/doc/LICENSE_txt_html.html +267 -0
  33. data/doc/doc/P5T34_html.html +248 -0
  34. data/doc/doc/P5_T_34/Exam_html.html +372 -0
  35. data/doc/doc/P5_T_34/Interface_html.html +617 -0
  36. data/doc/doc/P5_T_34/LList_html.html +598 -0
  37. data/doc/doc/P5_T_34/QuestionVF_html.html +310 -0
  38. data/doc/doc/P5_T_34/Question_html.html +520 -0
  39. data/doc/doc/P5_T_34_gemspec_html.html +335 -0
  40. data/doc/doc/P5_T_34_html.html +250 -0
  41. data/doc/doc/README_md_html.html +324 -0
  42. data/doc/doc/Rakefile_html.html +261 -0
  43. data/doc/doc/contributors_txt_html.html +247 -0
  44. data/doc/doc/fonts_css.html +325 -0
  45. data/doc/doc/index_html.html +267 -0
  46. data/doc/doc/js/darkfish_js.html +304 -0
  47. data/doc/doc/js/jquery_js.html +1468 -0
  48. data/doc/doc/js/navigation_js.html +289 -0
  49. data/doc/doc/js/search_index_js.html +230 -0
  50. data/doc/doc/js/search_js.html +258 -0
  51. data/doc/doc/js/searcher_js.html +376 -0
  52. data/doc/doc/rdoc_css.html +862 -0
  53. data/doc/doc/table_of_contents_html.html +363 -0
  54. data/doc/fonts/Lato-Light.ttf +0 -0
  55. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  56. data/doc/fonts/Lato-Regular.ttf +0 -0
  57. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  58. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  59. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  60. data/doc/fonts.css +167 -0
  61. data/doc/images/add.png +0 -0
  62. data/doc/images/arrow_up.png +0 -0
  63. data/doc/images/brick.png +0 -0
  64. data/doc/images/brick_link.png +0 -0
  65. data/doc/images/bug.png +0 -0
  66. data/doc/images/bullet_black.png +0 -0
  67. data/doc/images/bullet_toggle_minus.png +0 -0
  68. data/doc/images/bullet_toggle_plus.png +0 -0
  69. data/doc/images/date.png +0 -0
  70. data/doc/images/delete.png +0 -0
  71. data/doc/images/find.png +0 -0
  72. data/doc/images/loadingAnimation.gif +0 -0
  73. data/doc/images/macFFBgHack.png +0 -0
  74. data/doc/images/package.png +0 -0
  75. data/doc/images/page_green.png +0 -0
  76. data/doc/images/page_white_text.png +0 -0
  77. data/doc/images/page_white_width.png +0 -0
  78. data/doc/images/plugin.png +0 -0
  79. data/doc/images/ruby.png +0 -0
  80. data/doc/images/tag_blue.png +0 -0
  81. data/doc/images/tag_green.png +0 -0
  82. data/doc/images/transparent.png +0 -0
  83. data/doc/images/wrench.png +0 -0
  84. data/doc/images/wrench_orange.png +0 -0
  85. data/doc/images/zoom.png +0 -0
  86. data/doc/index.html +168 -0
  87. data/doc/js/darkfish.js +140 -0
  88. data/doc/js/jquery.js +18 -0
  89. data/doc/js/navigation.js +142 -0
  90. data/doc/js/search.js +109 -0
  91. data/doc/js/search_index.js +1 -0
  92. data/doc/js/searcher.js +228 -0
  93. data/doc/rdoc.css +580 -0
  94. data/doc/table_of_contents.html +293 -0
  95. data/lib/P5_T_34/Exam.rb +34 -0
  96. data/lib/P5_T_34/ExamParser.rb +19 -0
  97. data/lib/P5_T_34/ExamRipper.rb +59 -0
  98. data/lib/P5_T_34/Interface.rb +99 -0
  99. data/lib/P5_T_34/LList.rb +94 -0
  100. data/lib/P5_T_34/Question.rb +49 -0
  101. data/lib/P5_T_34/QuestionVF.rb +20 -0
  102. data/lib/P5_T_34/version.rb +3 -0
  103. data/lib/P5_T_34.rb +14 -0
  104. data/script/examen001.exrb +16 -0
  105. data/spec/ExamParser_spec.rb +27 -0
  106. data/spec/ExamRipper_spec.rb +68 -0
  107. data/spec/Exam_spec.rb +36 -0
  108. data/spec/Interface_spec.rb +83 -0
  109. data/spec/LList_spec.rb +101 -0
  110. data/spec/P5_T_34_spec.rb +8 -0
  111. data/spec/QuestionVF_spec.rb +28 -0
  112. data/spec/Question_spec.rb +78 -0
  113. data/spec/spec_helper.rb +21 -0
  114. metadata +263 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4d286da13a3dc16f27d142d68780062075b00227
4
+ data.tar.gz: efa8b18941fe29f6b2ba4d488b8d1a24a5353ccf
5
+ SHA512:
6
+ metadata.gz: 021c8ed9198ca625cffdf8ac48d8213d8ef39472fc2c66263e507e6eb5099964ea2f2cd3186c13375392049a5a7a12bb01b0d842c70b0f60493ba0325dffb66a
7
+ data.tar.gz: 2ef141b756389e0a2fcb7bd4c0496d022e8669eb01cd26890e48dce86743959e49b542fb79c6f3c310388b3b1afef900a8e5b5586a0c39ca7b11a516f0a03890
data/.coveralls.yml ADDED
@@ -0,0 +1 @@
1
+ service_name: travis-ci
data/.gitignore ADDED
@@ -0,0 +1,24 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ #doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ #Personal
19
+ *~
20
+ *.o
21
+ *.class
22
+ *swp
23
+ *.DS_Store
24
+ .c9/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format progress
data/.travis.yml ADDED
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.1
4
+ - 1.9.3
5
+ #- jruby-18mode # JRuby in 1.8 mode
6
+ - jruby-19mode # JRuby in 1.9 mode
7
+ #- rbx-18mode
8
+ #- rbx-19mode
9
+ #- 1.8.7
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in P5_T_34.gemspec
4
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,15 @@
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
+ guard :rspec, cmd: "bundle exec rspec" do
11
+ watch(%r{^spec/.+_spec\.rb$})
12
+ watch(%r{^lib/.+/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
13
+ watch('spec/spec_helper.rb') { "spec" }
14
+ end
15
+
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 alu0100611120
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/P5_T_34.gemspec ADDED
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'P5_T_34/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "P5_T_34"
8
+ spec.version = P5T34::VERSION
9
+ spec.authors = ["alu0100611120"]
10
+ spec.email = ["alu0100611120@ull.edu.es"]
11
+ spec.description = %q{Framework para la creación y manupulación de examenes}
12
+ spec.summary = %q{Created in c9.io}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ #PERSONAL: Para poder usar rspec
24
+ spec.add_development_dependency "rspec", "~> 2.1"
25
+ #Para utilizar Guard
26
+ spec.add_development_dependency "guard"
27
+ spec.add_development_dependency "guard-rspec"
28
+ spec.add_development_dependency "guard-bundler"
29
+ #coverall
30
+ spec.add_development_dependency "coveralls"
31
+ end
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # P5T34
2
+
3
+
4
+ Esta gema implementa la estructura y metodos necesarios para la construcción de una lista de preguntas ó 'Examen'
5
+ ## Travis_Status
6
+
7
+ ######Travis CI: [![Build Status](https://travis-ci.org/alu0100611120/P8_T34.svg?branch=master)](https://travis-ci.org/alu0100611120/P8_T34)
8
+
9
+ ######CoverAlls: [![Coverage Status](https://coveralls.io/repos/alu0100611120/P8_T34/badge.png)](https://coveralls.io/r/alu0100611120/P8_T34)
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ gem 'P5_T_34'
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install P5_T_34
24
+
25
+ ## Usage
26
+
27
+ TODO: Write usage instructions here
28
+
29
+ ## Contributing
30
+
31
+ 1. Fork it
32
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
33
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
34
+ 4. Push to the branch (`git push origin my-new-feature`)
35
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,15 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ $:.unshift File.dirname(__FILE__) + 'lib'
4
+
5
+ require 'rspec/core/rake_task'
6
+ RSpec::Core::RakeTask.new
7
+ task :default => :spec
8
+
9
+ #Rdoc requirements
10
+ require 'rdoc/task'
11
+ Rake::RDocTask.new(:rdoc_dev) do |rd|
12
+ rd.main = "README.rdoc"
13
+ rd.rdoc_files.include("README.rdoc", "lib/**/*.rb")
14
+ rd.options << "--all"
15
+ end
data/contributors.txt ADDED
@@ -0,0 +1 @@
1
+ Iván Cabaleiro & Guillermo Rodriguez
data/doc/Gemfile.html ADDED
@@ -0,0 +1,151 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>Gemfile - RDoc Documentation</title>
8
+
9
+ <link href="./fonts.css" rel="stylesheet">
10
+ <link href="./rdoc.css" rel="stylesheet">
11
+
12
+ <script type="text/javascript">
13
+ var rdoc_rel_prefix = "./";
14
+ </script>
15
+
16
+ <script src="./js/jquery.js"></script>
17
+ <script src="./js/navigation.js"></script>
18
+ <script src="./js/search_index.js"></script>
19
+ <script src="./js/search.js"></script>
20
+ <script src="./js/searcher.js"></script>
21
+ <script src="./js/darkfish.js"></script>
22
+
23
+
24
+ <body id="top" role="document" class="file">
25
+ <nav role="navigation">
26
+ <div id="project-navigation">
27
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
28
+ <h2>
29
+ <a href="./index.html" rel="home">Home</a>
30
+ </h2>
31
+
32
+ <div id="table-of-contents-navigation">
33
+ <a href="./table_of_contents.html#pages">Pages</a>
34
+ <a href="./table_of_contents.html#classes">Classes</a>
35
+ <a href="./table_of_contents.html#methods">Methods</a>
36
+ </div>
37
+ </div>
38
+
39
+ <div id="search-section" role="search" class="project-section initially-hidden">
40
+ <form action="#" method="get" accept-charset="utf-8">
41
+ <div id="search-field-wrapper">
42
+ <input id="search-field" role="combobox" aria-label="Search"
43
+ aria-autocomplete="list" aria-controls="search-results"
44
+ type="text" name="search" placeholder="Search" spellcheck="false"
45
+ title="Type to search, Up and Down to navigate, Enter to load">
46
+ </div>
47
+
48
+ <ul id="search-results" aria-label="Search Results"
49
+ aria-busy="false" aria-expanded="false"
50
+ aria-atomic="false" class="initially-hidden"></ul>
51
+ </form>
52
+ </div>
53
+
54
+ </div>
55
+
56
+
57
+
58
+ <div id="project-metadata">
59
+ <div id="fileindex-section" class="nav-section">
60
+ <h3>Pages</h3>
61
+
62
+ <ul class="link-list">
63
+
64
+ <li><a href="./Gemfile.html">Gemfile</a>
65
+
66
+ <li><a href="./Gemfile_lock.html">Gemfile.lock</a>
67
+
68
+ <li><a href="./Guardfile.html">Guardfile</a>
69
+
70
+ <li><a href="./LICENSE_txt.html">LICENSE</a>
71
+
72
+ <li><a href="./P5_T_34_gemspec.html">P5_T_34.gemspec</a>
73
+
74
+ <li><a href="./README_md.html">README</a>
75
+
76
+ <li><a href="./Rakefile.html">Rakefile</a>
77
+
78
+ <li><a href="./contributors_txt.html">contributors</a>
79
+
80
+ <li><a href="./doc/Gemfile_html.html">Gemfile.html</a>
81
+
82
+ <li><a href="./doc/Gemfile_lock_html.html">Gemfile_lock.html</a>
83
+
84
+ <li><a href="./doc/Guardfile_html.html">Guardfile.html</a>
85
+
86
+ <li><a href="./doc/LICENSE_txt_html.html">LICENSE_txt.html</a>
87
+
88
+ <li><a href="./doc/P5T34_html.html">P5T34.html</a>
89
+
90
+ <li><a href="./doc/P5_T_34_html.html">P5_T_34.html</a>
91
+
92
+ <li><a href="./doc/P5_T_34/Exam_html.html">Exam.html</a>
93
+
94
+ <li><a href="./doc/P5_T_34/Interface_html.html">Interface.html</a>
95
+
96
+ <li><a href="./doc/P5_T_34/LList_html.html">LList.html</a>
97
+
98
+ <li><a href="./doc/P5_T_34/Question_html.html">Question.html</a>
99
+
100
+ <li><a href="./doc/P5_T_34/QuestionVF_html.html">QuestionVF.html</a>
101
+
102
+ <li><a href="./doc/P5_T_34_gemspec_html.html">P5_T_34_gemspec.html</a>
103
+
104
+ <li><a href="./doc/README_md_html.html">README_md.html</a>
105
+
106
+ <li><a href="./doc/Rakefile_html.html">Rakefile.html</a>
107
+
108
+ <li><a href="./doc/contributors_txt_html.html">contributors_txt.html</a>
109
+
110
+ <li><a href="./doc/fonts_css.html">fonts.css</a>
111
+
112
+ <li><a href="./doc/index_html.html">index.html</a>
113
+
114
+ <li><a href="./doc/js/darkfish_js.html">darkfish.js</a>
115
+
116
+ <li><a href="./doc/js/jquery_js.html">jquery.js</a>
117
+
118
+ <li><a href="./doc/js/navigation_js.html">navigation.js</a>
119
+
120
+ <li><a href="./doc/js/search_js.html">search.js</a>
121
+
122
+ <li><a href="./doc/js/search_index_js.html">search_index.js</a>
123
+
124
+ <li><a href="./doc/js/searcher_js.html">searcher.js</a>
125
+
126
+ <li><a href="./doc/rdoc_css.html">rdoc.css</a>
127
+
128
+ <li><a href="./doc/table_of_contents_html.html">table_of_contents.html</a>
129
+
130
+ </ul>
131
+ </div>
132
+
133
+ </div>
134
+ </nav>
135
+
136
+ <main role="main" aria-label="Page Gemfile">
137
+
138
+ <p>source &#39;<a href="https://rubygems.org">rubygems.org</a>&#39;</p>
139
+
140
+ <p># Specify your gem&#39;s dependencies in <a
141
+ href="P5_T_34_gemspec.html">P5_T_34.gemspec</a> gemspec</p>
142
+ </main>
143
+
144
+
145
+
146
+ <footer id="validator-badges" role="contentinfo">
147
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
148
+ <p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.0.
149
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
150
+ </footer>
151
+
@@ -0,0 +1,238 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>Gemfile.lock - RDoc Documentation</title>
8
+
9
+ <link href="./fonts.css" rel="stylesheet">
10
+ <link href="./rdoc.css" rel="stylesheet">
11
+
12
+ <script type="text/javascript">
13
+ var rdoc_rel_prefix = "./";
14
+ </script>
15
+
16
+ <script src="./js/jquery.js"></script>
17
+ <script src="./js/navigation.js"></script>
18
+ <script src="./js/search_index.js"></script>
19
+ <script src="./js/search.js"></script>
20
+ <script src="./js/searcher.js"></script>
21
+ <script src="./js/darkfish.js"></script>
22
+
23
+
24
+ <body id="top" role="document" class="file">
25
+ <nav role="navigation">
26
+ <div id="project-navigation">
27
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
28
+ <h2>
29
+ <a href="./index.html" rel="home">Home</a>
30
+ </h2>
31
+
32
+ <div id="table-of-contents-navigation">
33
+ <a href="./table_of_contents.html#pages">Pages</a>
34
+ <a href="./table_of_contents.html#classes">Classes</a>
35
+ <a href="./table_of_contents.html#methods">Methods</a>
36
+ </div>
37
+ </div>
38
+
39
+ <div id="search-section" role="search" class="project-section initially-hidden">
40
+ <form action="#" method="get" accept-charset="utf-8">
41
+ <div id="search-field-wrapper">
42
+ <input id="search-field" role="combobox" aria-label="Search"
43
+ aria-autocomplete="list" aria-controls="search-results"
44
+ type="text" name="search" placeholder="Search" spellcheck="false"
45
+ title="Type to search, Up and Down to navigate, Enter to load">
46
+ </div>
47
+
48
+ <ul id="search-results" aria-label="Search Results"
49
+ aria-busy="false" aria-expanded="false"
50
+ aria-atomic="false" class="initially-hidden"></ul>
51
+ </form>
52
+ </div>
53
+
54
+ </div>
55
+
56
+
57
+
58
+ <div id="project-metadata">
59
+ <div id="fileindex-section" class="nav-section">
60
+ <h3>Pages</h3>
61
+
62
+ <ul class="link-list">
63
+
64
+ <li><a href="./Gemfile.html">Gemfile</a>
65
+
66
+ <li><a href="./Gemfile_lock.html">Gemfile.lock</a>
67
+
68
+ <li><a href="./Guardfile.html">Guardfile</a>
69
+
70
+ <li><a href="./LICENSE_txt.html">LICENSE</a>
71
+
72
+ <li><a href="./P5_T_34_gemspec.html">P5_T_34.gemspec</a>
73
+
74
+ <li><a href="./README_md.html">README</a>
75
+
76
+ <li><a href="./Rakefile.html">Rakefile</a>
77
+
78
+ <li><a href="./contributors_txt.html">contributors</a>
79
+
80
+ <li><a href="./doc/Gemfile_html.html">Gemfile.html</a>
81
+
82
+ <li><a href="./doc/Gemfile_lock_html.html">Gemfile_lock.html</a>
83
+
84
+ <li><a href="./doc/Guardfile_html.html">Guardfile.html</a>
85
+
86
+ <li><a href="./doc/LICENSE_txt_html.html">LICENSE_txt.html</a>
87
+
88
+ <li><a href="./doc/P5T34_html.html">P5T34.html</a>
89
+
90
+ <li><a href="./doc/P5_T_34_html.html">P5_T_34.html</a>
91
+
92
+ <li><a href="./doc/P5_T_34/Exam_html.html">Exam.html</a>
93
+
94
+ <li><a href="./doc/P5_T_34/Interface_html.html">Interface.html</a>
95
+
96
+ <li><a href="./doc/P5_T_34/LList_html.html">LList.html</a>
97
+
98
+ <li><a href="./doc/P5_T_34/Question_html.html">Question.html</a>
99
+
100
+ <li><a href="./doc/P5_T_34/QuestionVF_html.html">QuestionVF.html</a>
101
+
102
+ <li><a href="./doc/P5_T_34_gemspec_html.html">P5_T_34_gemspec.html</a>
103
+
104
+ <li><a href="./doc/README_md_html.html">README_md.html</a>
105
+
106
+ <li><a href="./doc/Rakefile_html.html">Rakefile.html</a>
107
+
108
+ <li><a href="./doc/contributors_txt_html.html">contributors_txt.html</a>
109
+
110
+ <li><a href="./doc/fonts_css.html">fonts.css</a>
111
+
112
+ <li><a href="./doc/index_html.html">index.html</a>
113
+
114
+ <li><a href="./doc/js/darkfish_js.html">darkfish.js</a>
115
+
116
+ <li><a href="./doc/js/jquery_js.html">jquery.js</a>
117
+
118
+ <li><a href="./doc/js/navigation_js.html">navigation.js</a>
119
+
120
+ <li><a href="./doc/js/search_js.html">search.js</a>
121
+
122
+ <li><a href="./doc/js/search_index_js.html">search_index.js</a>
123
+
124
+ <li><a href="./doc/js/searcher_js.html">searcher.js</a>
125
+
126
+ <li><a href="./doc/rdoc_css.html">rdoc.css</a>
127
+
128
+ <li><a href="./doc/table_of_contents_html.html">table_of_contents.html</a>
129
+
130
+ </ul>
131
+ </div>
132
+
133
+ </div>
134
+ </nav>
135
+
136
+ <main role="main" aria-label="Page Gemfile.lock">
137
+
138
+ <p>PATH</p>
139
+
140
+ <pre>remote: .
141
+ specs:
142
+ P5_T_34 (0.0.1)</pre>
143
+
144
+ <p>GEM</p>
145
+
146
+ <pre>remote: https://rubygems.org/
147
+ specs:
148
+ celluloid (0.16.0)
149
+ timers (~&gt; 4.0.0)
150
+ coderay (1.1.0)
151
+ coveralls (0.7.1)
152
+ multi_json (~&gt; 1.3)
153
+ rest-client
154
+ simplecov (&gt;= 0.7)
155
+ term-ansicolor
156
+ thor
157
+ diff-lcs (1.2.5)
158
+ docile (1.1.5)
159
+ ffi (1.9.6)
160
+ formatador (0.2.5)
161
+ guard (2.8.2)
162
+ formatador (&gt;= 0.2.4)
163
+ listen (~&gt; 2.7)
164
+ lumberjack (~&gt; 1.0)
165
+ pry (&gt;= 0.9.12)
166
+ thor (&gt;= 0.18.1)
167
+ guard-bundler (2.0.0)
168
+ bundler (~&gt; 1.0)
169
+ guard (~&gt; 2.2)
170
+ guard-rspec (4.3.1)
171
+ guard (~&gt; 2.1)
172
+ rspec (&gt;= 2.14, &lt; 4.0)
173
+ hitimes (1.2.2)
174
+ listen (2.7.12)
175
+ celluloid (&gt;= 0.15.2)
176
+ rb-fsevent (&gt;= 0.9.3)
177
+ rb-inotify (&gt;= 0.9)
178
+ lumberjack (1.0.9)
179
+ method_source (0.8.2)
180
+ mime-types (2.4.3)
181
+ multi_json (1.10.1)
182
+ netrc (0.8.0)
183
+ pry (0.10.1)
184
+ coderay (~&gt; 1.1.0)
185
+ method_source (~&gt; 0.8.1)
186
+ slop (~&gt; 3.4)
187
+ rake (10.3.2)
188
+ rb-fsevent (0.9.4)
189
+ rb-inotify (0.9.5)
190
+ ffi (&gt;= 0.5.0)
191
+ rest-client (1.7.2)
192
+ mime-types (&gt;= 1.16, &lt; 3.0)
193
+ netrc (~&gt; 0.7)
194
+ rspec (2.99.0)
195
+ rspec-core (~&gt; 2.99.0)
196
+ rspec-expectations (~&gt; 2.99.0)
197
+ rspec-mocks (~&gt; 2.99.0)
198
+ rspec-core (2.99.2)
199
+ rspec-expectations (2.99.2)
200
+ diff-lcs (&gt;= 1.1.3, &lt; 2.0)
201
+ rspec-mocks (2.99.2)
202
+ simplecov (0.9.1)
203
+ docile (~&gt; 1.1.0)
204
+ multi_json (~&gt; 1.0)
205
+ simplecov-html (~&gt; 0.8.0)
206
+ simplecov-html (0.8.0)
207
+ slop (3.6.0)
208
+ term-ansicolor (1.3.0)
209
+ tins (~&gt; 1.0)
210
+ thor (0.19.1)
211
+ timers (4.0.1)
212
+ hitimes
213
+ tins (1.3.3)</pre>
214
+
215
+ <p>PLATFORMS</p>
216
+
217
+ <pre>ruby</pre>
218
+
219
+ <p>DEPENDENCIES</p>
220
+
221
+ <pre>P5_T_34!
222
+ bundler (~&gt; 1.3)
223
+ coveralls
224
+ guard
225
+ guard-bundler
226
+ guard-rspec
227
+ rake
228
+ rspec (~&gt; 2.1)</pre>
229
+ </main>
230
+
231
+
232
+
233
+ <footer id="validator-badges" role="contentinfo">
234
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
235
+ <p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.0.
236
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
237
+ </footer>
238
+