biblio-refs 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +5 -0
  5. data/Gemfile +4 -0
  6. data/Guardfile +82 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +45 -0
  9. data/README.rdoc +20 -0
  10. data/Rakefile +12 -0
  11. data/biblio-refs.gemspec +30 -0
  12. data/bin/console +14 -0
  13. data/bin/setup +7 -0
  14. data/coveralls.yml +1 -0
  15. data/html/BiblioRefs.html +109 -0
  16. data/html/BiblioRefs/ArticuloPeriodico.html +281 -0
  17. data/html/BiblioRefs/ArticuloRevista.html +393 -0
  18. data/html/BiblioRefs/DocumentoElectronico.html +336 -0
  19. data/html/BiblioRefs/Libro.html +300 -0
  20. data/html/BiblioRefs/List.html +374 -0
  21. data/html/BiblioRefs/ListaAPA.html +274 -0
  22. data/html/BiblioRefs/PublicacionesPeriodicas.html +156 -0
  23. data/html/BiblioRefs/Referencia.html +889 -0
  24. data/html/Object.html +117 -0
  25. data/html/README_rdoc.html +111 -0
  26. data/html/created.rid +11 -0
  27. data/html/css/fonts.css +167 -0
  28. data/html/css/rdoc.css +590 -0
  29. data/html/fonts/Lato-Light.ttf +0 -0
  30. data/html/fonts/Lato-LightItalic.ttf +0 -0
  31. data/html/fonts/Lato-Regular.ttf +0 -0
  32. data/html/fonts/Lato-RegularItalic.ttf +0 -0
  33. data/html/fonts/SourceCodePro-Bold.ttf +0 -0
  34. data/html/fonts/SourceCodePro-Regular.ttf +0 -0
  35. data/html/images/add.png +0 -0
  36. data/html/images/arrow_up.png +0 -0
  37. data/html/images/brick.png +0 -0
  38. data/html/images/brick_link.png +0 -0
  39. data/html/images/bug.png +0 -0
  40. data/html/images/bullet_black.png +0 -0
  41. data/html/images/bullet_toggle_minus.png +0 -0
  42. data/html/images/bullet_toggle_plus.png +0 -0
  43. data/html/images/date.png +0 -0
  44. data/html/images/delete.png +0 -0
  45. data/html/images/find.png +0 -0
  46. data/html/images/loadingAnimation.gif +0 -0
  47. data/html/images/macFFBgHack.png +0 -0
  48. data/html/images/package.png +0 -0
  49. data/html/images/page_green.png +0 -0
  50. data/html/images/page_white_text.png +0 -0
  51. data/html/images/page_white_width.png +0 -0
  52. data/html/images/plugin.png +0 -0
  53. data/html/images/ruby.png +0 -0
  54. data/html/images/tag_blue.png +0 -0
  55. data/html/images/tag_green.png +0 -0
  56. data/html/images/transparent.png +0 -0
  57. data/html/images/wrench.png +0 -0
  58. data/html/images/wrench_orange.png +0 -0
  59. data/html/images/zoom.png +0 -0
  60. data/html/index.html +129 -0
  61. data/html/js/darkfish.js +161 -0
  62. data/html/js/jquery.js +4 -0
  63. data/html/js/navigation.js +142 -0
  64. data/html/js/navigation.js.gz +0 -0
  65. data/html/js/search.js +109 -0
  66. data/html/js/search_index.js +1 -0
  67. data/html/js/search_index.js.gz +0 -0
  68. data/html/js/searcher.js +228 -0
  69. data/html/js/searcher.js.gz +0 -0
  70. data/html/table_of_contents.html +284 -0
  71. data/lib/biblio_refs.rb +9 -0
  72. data/lib/biblio_refs/articulo_periodico.rb +32 -0
  73. data/lib/biblio_refs/articulo_revista.rb +60 -0
  74. data/lib/biblio_refs/documento_electronico.rb +42 -0
  75. data/lib/biblio_refs/libro.rb +37 -0
  76. data/lib/biblio_refs/list.rb +61 -0
  77. data/lib/biblio_refs/lista_apa.rb +41 -0
  78. data/lib/biblio_refs/publicaciones_periodicas.rb +10 -0
  79. data/lib/biblio_refs/referencia.rb +204 -0
  80. data/lib/biblio_refs/version.rb +3 -0
  81. metadata +221 -0
@@ -0,0 +1,3 @@
1
+ module BiblioRefs
2
+ VERSION = "0.1.1"
3
+ end
metadata ADDED
@@ -0,0 +1,221 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: biblio-refs
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Sergio Rodríguez
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-12-17 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: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
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: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '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:
112
+ email:
113
+ - alu0100699968@ull.edu.es
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - ".gitignore"
119
+ - ".rspec"
120
+ - ".travis.yml"
121
+ - Gemfile
122
+ - Guardfile
123
+ - LICENSE.txt
124
+ - README.md
125
+ - README.rdoc
126
+ - Rakefile
127
+ - biblio-refs.gemspec
128
+ - bin/console
129
+ - bin/setup
130
+ - coveralls.yml
131
+ - html/BiblioRefs.html
132
+ - html/BiblioRefs/ArticuloPeriodico.html
133
+ - html/BiblioRefs/ArticuloRevista.html
134
+ - html/BiblioRefs/DocumentoElectronico.html
135
+ - html/BiblioRefs/Libro.html
136
+ - html/BiblioRefs/List.html
137
+ - html/BiblioRefs/ListaAPA.html
138
+ - html/BiblioRefs/PublicacionesPeriodicas.html
139
+ - html/BiblioRefs/Referencia.html
140
+ - html/Object.html
141
+ - html/README_rdoc.html
142
+ - html/created.rid
143
+ - html/css/fonts.css
144
+ - html/css/rdoc.css
145
+ - html/fonts/Lato-Light.ttf
146
+ - html/fonts/Lato-LightItalic.ttf
147
+ - html/fonts/Lato-Regular.ttf
148
+ - html/fonts/Lato-RegularItalic.ttf
149
+ - html/fonts/SourceCodePro-Bold.ttf
150
+ - html/fonts/SourceCodePro-Regular.ttf
151
+ - html/images/add.png
152
+ - html/images/arrow_up.png
153
+ - html/images/brick.png
154
+ - html/images/brick_link.png
155
+ - html/images/bug.png
156
+ - html/images/bullet_black.png
157
+ - html/images/bullet_toggle_minus.png
158
+ - html/images/bullet_toggle_plus.png
159
+ - html/images/date.png
160
+ - html/images/delete.png
161
+ - html/images/find.png
162
+ - html/images/loadingAnimation.gif
163
+ - html/images/macFFBgHack.png
164
+ - html/images/package.png
165
+ - html/images/page_green.png
166
+ - html/images/page_white_text.png
167
+ - html/images/page_white_width.png
168
+ - html/images/plugin.png
169
+ - html/images/ruby.png
170
+ - html/images/tag_blue.png
171
+ - html/images/tag_green.png
172
+ - html/images/transparent.png
173
+ - html/images/wrench.png
174
+ - html/images/wrench_orange.png
175
+ - html/images/zoom.png
176
+ - html/index.html
177
+ - html/js/darkfish.js
178
+ - html/js/jquery.js
179
+ - html/js/navigation.js
180
+ - html/js/navigation.js.gz
181
+ - html/js/search.js
182
+ - html/js/search_index.js
183
+ - html/js/search_index.js.gz
184
+ - html/js/searcher.js
185
+ - html/js/searcher.js.gz
186
+ - html/table_of_contents.html
187
+ - lib/biblio_refs.rb
188
+ - lib/biblio_refs/articulo_periodico.rb
189
+ - lib/biblio_refs/articulo_revista.rb
190
+ - lib/biblio_refs/documento_electronico.rb
191
+ - lib/biblio_refs/libro.rb
192
+ - lib/biblio_refs/list.rb
193
+ - lib/biblio_refs/lista_apa.rb
194
+ - lib/biblio_refs/publicaciones_periodicas.rb
195
+ - lib/biblio_refs/referencia.rb
196
+ - lib/biblio_refs/version.rb
197
+ homepage: https://github.com/alu0100699968/biblio_refs
198
+ licenses:
199
+ - MIT
200
+ metadata: {}
201
+ post_install_message:
202
+ rdoc_options: []
203
+ require_paths:
204
+ - lib
205
+ required_ruby_version: !ruby/object:Gem::Requirement
206
+ requirements:
207
+ - - ">="
208
+ - !ruby/object:Gem::Version
209
+ version: '0'
210
+ required_rubygems_version: !ruby/object:Gem::Requirement
211
+ requirements:
212
+ - - ">="
213
+ - !ruby/object:Gem::Version
214
+ version: '0'
215
+ requirements: []
216
+ rubyforge_project:
217
+ rubygems_version: 2.4.6
218
+ signing_key:
219
+ specification_version: 4
220
+ summary: Gema para representar referencias bibliográficas.
221
+ test_files: []