biblio_alu0100845235 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +9 -0
  4. data/.travis.yml +6 -0
  5. data/= +0 -0
  6. data/CODE_OF_CONDUCT.md +13 -0
  7. data/Gemfile +6 -0
  8. data/Guardfile +82 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +7 -0
  11. data/Rakefile +7 -0
  12. data/biblio.gemspec +34 -0
  13. data/biblio.rb +12 -0
  14. data/biblio_spec.1.rb +478 -0
  15. data/biblio_spec.rb +535 -0
  16. data/bin/console +14 -0
  17. data/bin/setup +7 -0
  18. data/doc/=.html +97 -0
  19. data/doc/Biblio.html +109 -0
  20. data/doc/CODE_OF_CONDUCT_md.html +127 -0
  21. data/doc/Cita.html +278 -0
  22. data/doc/Edocumento.html +275 -0
  23. data/doc/Gemfile.html +104 -0
  24. data/doc/Gemfile_lock.html +204 -0
  25. data/doc/Guardfile.html +182 -0
  26. data/doc/LICENSE_txt.html +119 -0
  27. data/doc/Libro.html +391 -0
  28. data/doc/List.html +591 -0
  29. data/doc/Object.html +116 -0
  30. data/doc/Periodico.html +218 -0
  31. data/doc/Publicacion.html +321 -0
  32. data/doc/README_md.html +115 -0
  33. data/doc/Rakefile.html +103 -0
  34. data/doc/Referencia.html +467 -0
  35. data/doc/Revista.html +275 -0
  36. data/doc/biblio_gemspec.html +132 -0
  37. data/doc/bin/setup.html +103 -0
  38. data/doc/created.rid +30 -0
  39. data/doc/css/fonts.css +167 -0
  40. data/doc/css/rdoc.css +590 -0
  41. data/doc/fonts/Lato-Light.ttf +0 -0
  42. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  43. data/doc/fonts/Lato-Regular.ttf +0 -0
  44. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  45. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  46. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  47. data/doc/images/add.png +0 -0
  48. data/doc/images/arrow_up.png +0 -0
  49. data/doc/images/brick.png +0 -0
  50. data/doc/images/brick_link.png +0 -0
  51. data/doc/images/bug.png +0 -0
  52. data/doc/images/bullet_black.png +0 -0
  53. data/doc/images/bullet_toggle_minus.png +0 -0
  54. data/doc/images/bullet_toggle_plus.png +0 -0
  55. data/doc/images/date.png +0 -0
  56. data/doc/images/delete.png +0 -0
  57. data/doc/images/find.png +0 -0
  58. data/doc/images/loadingAnimation.gif +0 -0
  59. data/doc/images/macFFBgHack.png +0 -0
  60. data/doc/images/package.png +0 -0
  61. data/doc/images/page_green.png +0 -0
  62. data/doc/images/page_white_text.png +0 -0
  63. data/doc/images/page_white_width.png +0 -0
  64. data/doc/images/plugin.png +0 -0
  65. data/doc/images/ruby.png +0 -0
  66. data/doc/images/tag_blue.png +0 -0
  67. data/doc/images/tag_green.png +0 -0
  68. data/doc/images/transparent.png +0 -0
  69. data/doc/images/wrench.png +0 -0
  70. data/doc/images/wrench_orange.png +0 -0
  71. data/doc/images/zoom.png +0 -0
  72. data/doc/index.html +125 -0
  73. data/doc/js/darkfish.js +161 -0
  74. data/doc/js/jquery.js +4 -0
  75. data/doc/js/navigation.js +142 -0
  76. data/doc/js/navigation.js.gz +0 -0
  77. data/doc/js/search.js +109 -0
  78. data/doc/js/search_index.js +1 -0
  79. data/doc/js/search_index.js.gz +0 -0
  80. data/doc/js/searcher.js +228 -0
  81. data/doc/js/searcher.js.gz +0 -0
  82. data/doc/table_of_contents.html +294 -0
  83. data/lib/biblio/cita.rb +30 -0
  84. data/lib/biblio/edocumento.rb +34 -0
  85. data/lib/biblio/libro.rb +62 -0
  86. data/lib/biblio/list.rb +133 -0
  87. data/lib/biblio/node.rb +2 -0
  88. data/lib/biblio/periodico.rb +28 -0
  89. data/lib/biblio/publicacion.rb +23 -0
  90. data/lib/biblio/referencia.rb +84 -0
  91. data/lib/biblio/revista.rb +34 -0
  92. data/lib/biblio/version.rb +3 -0
  93. data/lib/biblio.rb +17 -0
  94. data/spec_helper.1.rb +2 -0
  95. data/spec_helper.rb +4 -0
  96. metadata +228 -0
data/doc/Revista.html ADDED
@@ -0,0 +1,275 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>class Revista - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ </script>
12
+
13
+ <script src="./js/jquery.js"></script>
14
+ <script src="./js/darkfish.js"></script>
15
+
16
+ <link href="./css/fonts.css" rel="stylesheet">
17
+ <link href="./css/rdoc.css" rel="stylesheet">
18
+
19
+
20
+
21
+ <body id="top" role="document" class="class">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="./index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="./table_of_contents.html#pages">Pages</a>
31
+ <a href="./table_of_contents.html#classes">Classes</a>
32
+ <a href="./table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
43
+ </div>
44
+
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
50
+
51
+ </div>
52
+
53
+
54
+
55
+ <div id="class-metadata">
56
+
57
+ <div id="parent-class-section" class="nav-section">
58
+ <h3>Parent</h3>
59
+
60
+
61
+ <p class="link"><a href="Publicacion.html">Publicacion</a>
62
+
63
+ </div>
64
+
65
+
66
+
67
+ <!-- Method Quickref -->
68
+ <div id="method-list-section" class="nav-section">
69
+ <h3>Methods</h3>
70
+
71
+ <ul class="link-list" role="directory">
72
+
73
+ <li class="calls-super" ><a href="#method-c-new">::new</a>
74
+
75
+ <li ><a href="#method-i-numero">#numero</a>
76
+
77
+ <li ><a href="#method-i-to_s">#to_s</a>
78
+
79
+ </ul>
80
+ </div>
81
+
82
+ </div>
83
+ </nav>
84
+
85
+ <main role="main" aria-labelledby="class-Revista">
86
+ <h1 id="class-Revista" class="class">
87
+ class Revista
88
+ </h1>
89
+
90
+ <section class="description">
91
+
92
+ </section>
93
+
94
+
95
+
96
+
97
+ <section id="5Buntitled-5D" class="documentation-section">
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+ <section class="attribute-method-details" class="method-section">
106
+ <header>
107
+ <h3>Attributes</h3>
108
+ </header>
109
+
110
+
111
+ <div id="attribute-i-number" class="method-detail">
112
+ <div class="method-heading attribute-method-heading">
113
+ <span class="method-name">number</span><span
114
+ class="attribute-access-type">[RW]</span>
115
+ </div>
116
+
117
+ <div class="method-description">
118
+
119
+
120
+
121
+ </div>
122
+ </div>
123
+
124
+ </section>
125
+
126
+
127
+
128
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section">
129
+ <header>
130
+ <h3>Public Class Methods</h3>
131
+ </header>
132
+
133
+
134
+ <div id="method-c-new" class="method-detail ">
135
+
136
+ <div class="method-heading">
137
+ <span class="method-name">new</span><span
138
+ class="method-args">()</span>
139
+
140
+ <span class="method-click-advice">click to toggle source</span>
141
+
142
+ </div>
143
+
144
+
145
+ <div class="method-description">
146
+
147
+
148
+
149
+
150
+ <div class="method-calls-super">
151
+ Calls superclass method
152
+ <a href="Publicacion.html#method-c-new">Publicacion.new</a>
153
+ </div>
154
+
155
+
156
+
157
+ <div class="method-source-code" id="new-source">
158
+ <pre><span class="ruby-comment"># File lib/biblio/revista.rb, line 4</span>
159
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>
160
+ <span class="ruby-keyword">super</span>
161
+ <span class="ruby-keyword">end</span></pre>
162
+ </div>
163
+
164
+ </div>
165
+
166
+
167
+
168
+
169
+ </div>
170
+
171
+
172
+ </section>
173
+
174
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section">
175
+ <header>
176
+ <h3>Public Instance Methods</h3>
177
+ </header>
178
+
179
+
180
+ <div id="method-i-numero" class="method-detail ">
181
+
182
+ <div class="method-heading">
183
+ <span class="method-name">numero</span><span
184
+ class="method-args">(number)</span>
185
+
186
+ <span class="method-click-advice">click to toggle source</span>
187
+
188
+ </div>
189
+
190
+
191
+ <div class="method-description">
192
+
193
+
194
+
195
+
196
+
197
+
198
+ <div class="method-source-code" id="numero-source">
199
+ <pre><span class="ruby-comment"># File lib/biblio/revista.rb, line 8</span>
200
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">numero</span>(<span class="ruby-identifier">number</span>)
201
+ <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-string">&quot;Numero de revista debe se un Numeric&quot;</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">number</span>.<span class="ruby-identifier">is_a?</span>(<span class="ruby-constant">Numeric</span>)
202
+ <span class="ruby-ivar">@number</span> = <span class="ruby-identifier">number</span>
203
+ <span class="ruby-keyword">end</span></pre>
204
+ </div>
205
+
206
+ </div>
207
+
208
+
209
+
210
+
211
+ </div>
212
+
213
+
214
+ <div id="method-i-to_s" class="method-detail ">
215
+
216
+ <div class="method-heading">
217
+ <span class="method-name">to_s</span><span
218
+ class="method-args">()</span>
219
+
220
+ <span class="method-click-advice">click to toggle source</span>
221
+
222
+ </div>
223
+
224
+
225
+ <div class="method-description">
226
+
227
+
228
+
229
+
230
+
231
+
232
+ <div class="method-source-code" id="to_s-source">
233
+ <pre><span class="ruby-comment"># File lib/biblio/revista.rb, line 13</span>
234
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">to_s</span>
235
+ <span class="ruby-comment"># formateamos autores</span>
236
+ <span class="ruby-identifier">str_autores</span> = <span class="ruby-string">&quot;&quot;</span>
237
+ <span class="ruby-ivar">@autores</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">autor</span><span class="ruby-operator">|</span>
238
+ <span class="ruby-identifier">str_autores</span> <span class="ruby-operator">+=</span> <span class="ruby-identifier">autor</span> <span class="ruby-operator">+</span> <span class="ruby-string">&quot;, &quot;</span>
239
+ <span class="ruby-keyword">end</span>
240
+ <span class="ruby-identifier">str_autores</span> = <span class="ruby-identifier">str_autores</span>[<span class="ruby-value">0</span>, <span class="ruby-identifier">str_autores</span>.<span class="ruby-identifier">length</span> <span class="ruby-operator">-</span> <span class="ruby-value">2</span>]
241
+ <span class="ruby-keyword">if</span> <span class="ruby-ivar">@autores</span>.<span class="ruby-identifier">length</span> <span class="ruby-operator">&gt;</span> <span class="ruby-value">1</span>
242
+ <span class="ruby-identifier">str_autores</span> = <span class="ruby-identifier">str_autores</span>.<span class="ruby-identifier">sub</span>(<span class="ruby-string">&quot;, &quot;</span> <span class="ruby-operator">+</span> <span class="ruby-ivar">@autores</span>.<span class="ruby-identifier">last</span>, <span class="ruby-string">&quot; &amp; &quot;</span> <span class="ruby-operator">+</span> <span class="ruby-ivar">@autores</span>.<span class="ruby-identifier">last</span>)
243
+ <span class="ruby-keyword">end</span>
244
+
245
+ <span class="ruby-comment"># generamos string de salida</span>
246
+ <span class="ruby-identifier">salida</span>=<span class="ruby-string">&quot;&quot;</span>
247
+ <span class="ruby-keyword">if</span>(<span class="ruby-ivar">@pfin</span> <span class="ruby-operator">!=</span> <span class="ruby-keyword">nil</span>)
248
+ <span class="ruby-identifier">salida</span> = <span class="ruby-node">&quot;#{str_autores} (#{@date_p.strftime(&quot;%d, %B %Y&quot;)}). #{@title}.\n\t#{@editor}, N. #{@number}, p. #{@pinicio} - #{@pfin}.\n\tISSN: #{@issn}&quot;</span>
249
+ <span class="ruby-keyword">else</span>
250
+ <span class="ruby-identifier">salida</span> = <span class="ruby-node">&quot;#{str_autores} (#{@date_p.strftime(&quot;%d, %B %Y&quot;)}). #{@title}.\n\t#{@editor}, N. #{@number}, p. #{@pinicio}.\n\tISSN: #{@issn}&quot;</span>
251
+ <span class="ruby-keyword">end</span>
252
+ <span class="ruby-identifier">salida</span>
253
+ <span class="ruby-keyword">end</span></pre>
254
+ </div>
255
+
256
+ </div>
257
+
258
+
259
+
260
+
261
+ </div>
262
+
263
+
264
+ </section>
265
+
266
+ </section>
267
+ </main>
268
+
269
+
270
+ <footer id="validator-badges" role="contentinfo">
271
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
272
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
273
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
274
+ </footer>
275
+
@@ -0,0 +1,132 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>biblio.gemspec - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ </script>
12
+
13
+ <script src="./js/jquery.js"></script>
14
+ <script src="./js/darkfish.js"></script>
15
+
16
+ <link href="./css/fonts.css" rel="stylesheet">
17
+ <link href="./css/rdoc.css" rel="stylesheet">
18
+
19
+
20
+
21
+ <body id="top" role="document" class="file">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="./index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="./table_of_contents.html#pages">Pages</a>
31
+ <a href="./table_of_contents.html#classes">Classes</a>
32
+ <a href="./table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
43
+ </div>
44
+
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
50
+
51
+ </div>
52
+
53
+
54
+
55
+ <div id="project-metadata">
56
+ <div id="fileindex-section" class="nav-section">
57
+ <h3>Pages</h3>
58
+
59
+ <ul class="link-list">
60
+
61
+ <li><a href="./=.html">=</a>
62
+
63
+ <li><a href="./CODE_OF_CONDUCT_md.html">CODE_OF_CONDUCT</a>
64
+
65
+ <li><a href="./Gemfile.html">Gemfile</a>
66
+
67
+ <li><a href="./Gemfile_lock.html">Gemfile.lock</a>
68
+
69
+ <li><a href="./Guardfile.html">Guardfile</a>
70
+
71
+ <li><a href="./LICENSE_txt.html">LICENSE</a>
72
+
73
+ <li><a href="./README_md.html">README</a>
74
+
75
+ <li><a href="./Rakefile.html">Rakefile</a>
76
+
77
+ <li><a href="./biblio_gemspec.html">biblio.gemspec</a>
78
+
79
+ <li><a href="./bin/setup.html">setup</a>
80
+
81
+ </ul>
82
+ </div>
83
+
84
+ </div>
85
+ </nav>
86
+
87
+ <main role="main" aria-label="Page biblio.gemspec">
88
+
89
+ <p>lib = File.expand_path(&#39;../lib&#39;, __FILE__) $LOAD_PATH.unshift(lib)
90
+ unless $LOAD_PATH.include?(lib) require &#39;biblio/version&#39;</p>
91
+
92
+ <p>Gem::Specification.new do |spec|</p>
93
+
94
+ <pre class="ruby"><span class="ruby-identifier">spec</span>.<span class="ruby-identifier">name</span> = <span class="ruby-string">&quot;biblio&quot;</span>
95
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">version</span> = <span class="ruby-constant">Biblio</span><span class="ruby-operator">::</span><span class="ruby-constant">VERSION</span>
96
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">authors</span> = [<span class="ruby-string">&quot;alu0100845235&quot;</span>]
97
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">email</span> = [<span class="ruby-string">&quot;alu0100845235@ull.edu.es&quot;</span>]
98
+
99
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">respond_to?</span>(:<span class="ruby-identifier">metadata</span>)
100
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">metadata</span>[<span class="ruby-string">&#39;allowed_push_host&#39;</span>] = <span class="ruby-string">&quot;TODO: Set to &#39;http://mygemserver.com&#39; to prevent pushes to rubygems.org, or delete to allow pushes to any server.&quot;</span>
101
+ <span class="ruby-keyword">end</span>
102
+
103
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">summary</span> = <span class="ruby-string">%q{TODO: Write a short summary, because Rubygems requires one.}</span>
104
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">description</span> = <span class="ruby-string">%q{TODO: Write a longer description or delete this line.}</span>
105
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">homepage</span> = <span class="ruby-string">&quot;TODO: Put your gem&#39;s website or public repo URL here.&quot;</span>
106
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">license</span> = <span class="ruby-string">&quot;MIT&quot;</span>
107
+
108
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">files</span> = <span class="ruby-value">%x`git ls-files -z`</span>.<span class="ruby-identifier">split</span>(<span class="ruby-string">&quot;\x0&quot;</span>).<span class="ruby-identifier">reject</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">f</span><span class="ruby-operator">|</span> <span class="ruby-identifier">f</span>.<span class="ruby-identifier">match</span>(<span class="ruby-regexp">%r{^(test|spec|features)/}</span>) }
109
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">bindir</span> = <span class="ruby-string">&quot;exe&quot;</span>
110
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">executables</span> = <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">files</span>.<span class="ruby-identifier">grep</span>(<span class="ruby-regexp">%r{^exe/}</span>) { <span class="ruby-operator">|</span><span class="ruby-identifier">f</span><span class="ruby-operator">|</span> <span class="ruby-constant">File</span>.<span class="ruby-identifier">basename</span>(<span class="ruby-identifier">f</span>) }
111
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">require_paths</span> = [<span class="ruby-string">&quot;lib&quot;</span>]
112
+
113
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">add_development_dependency</span> <span class="ruby-string">&quot;bundler&quot;</span>, <span class="ruby-string">&quot;~&gt; 1.7&quot;</span>, <span class="ruby-string">&quot;&gt;= 1.7.6&quot;</span>
114
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">add_development_dependency</span> <span class="ruby-string">&quot;rake&quot;</span>, <span class="ruby-string">&quot;~&gt; 10.0&quot;</span>
115
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">add_development_dependency</span> <span class="ruby-string">&quot;rspec&quot;</span>, <span class="ruby-string">&quot;~&gt; 2.11&quot;</span>
116
+
117
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">add_development_dependency</span> <span class="ruby-string">&quot;guard&quot;</span>
118
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">add_development_dependency</span> <span class="ruby-string">&quot;guard-rspec&quot;</span>
119
+ <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">add_development_dependency</span> <span class="ruby-string">&quot;guard-bundler&quot;</span>
120
+ </pre>
121
+
122
+ <p>end</p>
123
+ </main>
124
+
125
+
126
+
127
+ <footer id="validator-badges" role="contentinfo">
128
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
129
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
130
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
131
+ </footer>
132
+
@@ -0,0 +1,103 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>setup - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "../";
11
+ </script>
12
+
13
+ <script src="../js/jquery.js"></script>
14
+ <script src="../js/darkfish.js"></script>
15
+
16
+ <link href="../css/fonts.css" rel="stylesheet">
17
+ <link href="../css/rdoc.css" rel="stylesheet">
18
+
19
+
20
+
21
+ <body id="top" role="document" class="file">
22
+ <nav role="navigation">
23
+ <div id="project-navigation">
24
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
25
+ <h2>
26
+ <a href="../index.html" rel="home">Home</a>
27
+ </h2>
28
+
29
+ <div id="table-of-contents-navigation">
30
+ <a href="../table_of_contents.html#pages">Pages</a>
31
+ <a href="../table_of_contents.html#classes">Classes</a>
32
+ <a href="../table_of_contents.html#methods">Methods</a>
33
+ </div>
34
+ </div>
35
+
36
+ <div id="search-section" role="search" class="project-section initially-hidden">
37
+ <form action="#" method="get" accept-charset="utf-8">
38
+ <div id="search-field-wrapper">
39
+ <input id="search-field" role="combobox" aria-label="Search"
40
+ aria-autocomplete="list" aria-controls="search-results"
41
+ type="text" name="search" placeholder="Search" spellcheck="false"
42
+ title="Type to search, Up and Down to navigate, Enter to load">
43
+ </div>
44
+
45
+ <ul id="search-results" aria-label="Search Results"
46
+ aria-busy="false" aria-expanded="false"
47
+ aria-atomic="false" class="initially-hidden"></ul>
48
+ </form>
49
+ </div>
50
+
51
+ </div>
52
+
53
+
54
+
55
+ <div id="project-metadata">
56
+ <div id="fileindex-section" class="nav-section">
57
+ <h3>Pages</h3>
58
+
59
+ <ul class="link-list">
60
+
61
+ <li><a href="../=.html">=</a>
62
+
63
+ <li><a href="../CODE_OF_CONDUCT_md.html">CODE_OF_CONDUCT</a>
64
+
65
+ <li><a href="../Gemfile.html">Gemfile</a>
66
+
67
+ <li><a href="../Gemfile_lock.html">Gemfile.lock</a>
68
+
69
+ <li><a href="../Guardfile.html">Guardfile</a>
70
+
71
+ <li><a href="../LICENSE_txt.html">LICENSE</a>
72
+
73
+ <li><a href="../README_md.html">README</a>
74
+
75
+ <li><a href="../Rakefile.html">Rakefile</a>
76
+
77
+ <li><a href="../biblio_gemspec.html">biblio.gemspec</a>
78
+
79
+ <li><a href="../bin/setup.html">setup</a>
80
+
81
+ </ul>
82
+ </div>
83
+
84
+ </div>
85
+ </nav>
86
+
87
+ <main role="main" aria-label="Page bin/setup">
88
+
89
+ <p>#!/bin/bash set -euo pipefail IFS=$&#39;nt&#39;</p>
90
+
91
+ <p>bundle install</p>
92
+
93
+ <p># Do any other automated setup that you need to do here</p>
94
+ </main>
95
+
96
+
97
+
98
+ <footer id="validator-badges" role="contentinfo">
99
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
100
+ <p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
101
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
102
+ </footer>
103
+
data/doc/created.rid ADDED
@@ -0,0 +1,30 @@
1
+ Fri, 18 Dec 2015 09:29:29 +0000
2
+ ./biblio_spec.1.rb Wed, 25 Nov 2015 19:51:39 +0000
3
+ ./biblio_spec.rb Fri, 11 Dec 2015 15:55:26 +0000
4
+ ./biblio.gemspec Mon, 23 Nov 2015 10:33:33 +0000
5
+ ./spec_helper.rb Thu, 10 Dec 2015 15:00:52 +0000
6
+ ./Rakefile Sun, 22 Nov 2015 12:43:36 +0000
7
+ ./Guardfile Sun, 22 Nov 2015 12:43:36 +0000
8
+ ./CODE_OF_CONDUCT.md Sun, 22 Nov 2015 12:43:36 +0000
9
+ ./README.md Thu, 17 Dec 2015 22:51:20 +0000
10
+ ./lib/biblio.rb Thu, 17 Dec 2015 22:12:59 +0000
11
+ ./lib/biblio/node.rb Mon, 23 Nov 2015 11:20:07 +0000
12
+ ./lib/biblio/publicacion.rb Thu, 17 Dec 2015 22:04:35 +0000
13
+ ./lib/biblio/cita.rb Thu, 17 Dec 2015 22:29:36 +0000
14
+ ./lib/biblio/libro.rb Thu, 17 Dec 2015 22:29:15 +0000
15
+ ./lib/biblio/version.rb Sun, 22 Nov 2015 12:43:36 +0000
16
+ ./lib/biblio/referencia.rb Thu, 17 Dec 2015 22:04:08 +0000
17
+ ./lib/biblio/edocumento.rb Thu, 17 Dec 2015 22:28:48 +0000
18
+ ./lib/biblio/revista.rb Thu, 17 Dec 2015 22:29:27 +0000
19
+ ./lib/biblio/list.rb Fri, 18 Dec 2015 08:35:48 +0000
20
+ ./lib/biblio/periodico.rb Thu, 17 Dec 2015 22:28:34 +0000
21
+ ./LICENSE.txt Sun, 22 Nov 2015 12:43:36 +0000
22
+ ./Gemfile.lock Thu, 10 Dec 2015 22:50:43 +0000
23
+ ./biblio.rb Sun, 22 Nov 2015 12:43:36 +0000
24
+ ./spec/biblio_spec.rb Fri, 18 Dec 2015 08:47:04 +0000
25
+ ./spec/spec_helper.rb Thu, 10 Dec 2015 15:00:52 +0000
26
+ ./spec_helper.1.rb Wed, 25 Nov 2015 19:57:12 +0000
27
+ ./= Sun, 22 Nov 2015 12:43:36 +0000
28
+ ./Gemfile Thu, 10 Dec 2015 15:00:52 +0000
29
+ ./bin/setup Sun, 22 Nov 2015 12:43:36 +0000
30
+ ./bin/console Sun, 22 Nov 2015 12:43:36 +0000