rdoc-generator-sixfish 0.3.1 → 0.5.0.pre20180710102525

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 (42) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/.editorconfig +16 -0
  4. data/.ruby-gemset +1 -0
  5. data/.ruby-version +1 -0
  6. data/ChangeLog +675 -0
  7. data/History.md +20 -16
  8. data/Manifest.txt +29 -0
  9. data/README.md +24 -30
  10. data/data/rdoc-generator-sixfish/css/sixfish.css +1184 -2
  11. data/data/rdoc-generator-sixfish/css/sixfish.css.map +7 -1
  12. data/data/rdoc-generator-sixfish/fa/light.js +0 -0
  13. data/data/rdoc-generator-sixfish/fa/light.svg +0 -0
  14. data/data/rdoc-generator-sixfish/fa/loader.js +1 -0
  15. data/data/rdoc-generator-sixfish/fa/regular.js +1 -0
  16. data/data/rdoc-generator-sixfish/fa/regular.svg +662 -0
  17. data/data/rdoc-generator-sixfish/fa/solid.js +1 -0
  18. data/data/rdoc-generator-sixfish/fa/solid.svg +662 -0
  19. data/data/rdoc-generator-sixfish/images/glyphicons-28-search.png +0 -0
  20. data/data/rdoc-generator-sixfish/js/jquery-3.1.1.js +10220 -0
  21. data/data/rdoc-generator-sixfish/js/sixfish.min.js +99 -0
  22. data/data/rdoc-generator-sixfish/templates/class.tmpl +180 -179
  23. data/data/rdoc-generator-sixfish/templates/file.tmpl +16 -4
  24. data/data/rdoc-generator-sixfish/templates/index.tmpl +48 -77
  25. data/data/rdoc-generator-sixfish/templates/layout.tmpl +51 -71
  26. data/lib/rdoc/discover.rb +1 -1
  27. data/lib/rdoc/generator/sixfish.rb +66 -45
  28. data/lib/sixfish.rb +9 -10
  29. data/spec/rdoc/generator/sixfish_spec.rb +16 -22
  30. data/spec/sixfish_spec.rb +5 -1
  31. data.tar.gz.sig +3 -2
  32. metadata +163 -63
  33. metadata.gz.sig +0 -0
  34. data/data/rdoc-generator-sixfish/css/fa-solid-900.515704be.ttf +0 -0
  35. data/data/rdoc-generator-sixfish/css/fa-solid-900.7ba04835.svg +0 -1
  36. data/data/rdoc-generator-sixfish/css/fa-solid-900.8c589fd1.eot +0 -0
  37. data/data/rdoc-generator-sixfish/css/fa-solid-900.c7b072c6.woff +0 -0
  38. data/data/rdoc-generator-sixfish/css/fa-solid-900.f2049a98.woff2 +0 -0
  39. data/data/rdoc-generator-sixfish/js/sixfish.js +0 -39
  40. data/data/rdoc-generator-sixfish/js/sixfish.js.map +0 -1
  41. data/lib/inversion/template/striptag.rb +0 -42
  42. data/lib/sixfish/patches.rb +0 -73
data/ChangeLog ADDED
@@ -0,0 +1,675 @@
1
+ 2015-03-17 Michael Granger <ged@FaerieMUD.org>
2
+
3
+ * .gems, .ruby-gemset, README.rdoc, Rakefile, assets/css/fivefish.css,
4
+ assets/css/sixfish.css, assets/js/fivefish.js, assets/js/sixfish.js,
5
+ data/rdoc-generator-fivefish/js/jquery-1.7.1.min.js, data/rdoc-
6
+ generator-fivefish/templates/class.tmpl, data/rdoc-generator-
7
+ fivefish/templates/file.tmpl, data/rdoc-generator-
8
+ fivefish/templates/index.tmpl, data/rdoc-generator-
9
+ fivefish/templates/layout.tmpl, data/rdoc-generator-
10
+ sixfish/js/jquery-1.7.1.min.js, data/rdoc-generator-
11
+ sixfish/templates/class.tmpl, data/rdoc-generator-
12
+ sixfish/templates/file.tmpl, data/rdoc-generator-
13
+ sixfish/templates/index.tmpl, data/rdoc-generator-
14
+ sixfish/templates/layout.tmpl, lib/fivefish.rb,
15
+ lib/rdoc/discover.rb, lib/rdoc/generator/fivefish.rb,
16
+ lib/rdoc/generator/sixfish.rb, lib/sixfish.rb,
17
+ spec/fivefish_spec.rb, spec/helpers.rb,
18
+ spec/rdoc/generator/fivefish_spec.rb,
19
+ spec/rdoc/generator/sixfish_spec.rb, spec/sixfish_spec.rb,
20
+ tasks/bootstrap.rb, tasks/fivefish.rb, tasks/sixfish.rb:
21
+ Fivefish -> Sixfish
22
+ [bd4700e71546] [tip]
23
+
24
+ 2018-03-13 Michael Granger <ged@FaerieMUD.org>
25
+
26
+ * .hgtags:
27
+ Added tag v0.4.0 for changeset 3148e94663b2
28
+ [4f56aa0f3d9f]
29
+
30
+ * .hgsigs:
31
+ Added signature for changeset c6769f3d26ee
32
+ [3148e94663b2] [v0.4.0]
33
+
34
+ * .hoerc, History.rdoc, Rakefile, certs/ged.pem, lib/fivefish.rb:
35
+ Bump the minor version, update history, add my gem-signing cert
36
+ [c6769f3d26ee]
37
+
38
+ 2018-01-03 Michael Granger <ged@FaerieMUD.org>
39
+
40
+ * .hoerc, .ruby-version, Manifest.txt, README.rdoc, Rakefile,
41
+ assets/css/fivefish.css, lib/fivefish.rb,
42
+ lib/rdoc/generator/fivefish.rb, rdoc-generator-fivefish.gemspec,
43
+ tasks/fonts.rb:
44
+ Update for latest Ruby, RDoc
45
+
46
+ - This also switches the fonts to just use the TTF ones instead of
47
+ converting them to woff.
48
+ [133ff869af20]
49
+
50
+ 2017-01-22 Michael Granger <ged@FaerieMUD.org>
51
+
52
+ * .hgtags:
53
+ Added tag v0.3.0 for changeset 81a096a42fcf
54
+ [6f438a827e16]
55
+
56
+ * .hgsigs:
57
+ Added signature for changeset c8a922361cbe
58
+ [81a096a42fcf] [v0.3.0]
59
+
60
+ * History.rdoc, lib/fivefish.rb, rdoc-generator-fivefish.gemspec:
61
+ Bump minor version and update history.
62
+ [c8a922361cbe]
63
+
64
+ * Rakefile, rdoc-generator-fivefish.gemspec:
65
+ Bump dependency on RDoc to 5.0.
66
+ [d5b62945f0f4]
67
+
68
+ 2017-01-17 Michael Granger <ged@FaerieMUD.org>
69
+
70
+ * .hgtags:
71
+ Added tag v0.2.1 for changeset 7c525059a49a
72
+ [2b6e92711c72]
73
+
74
+ * .hgsigs:
75
+ Added signature for changeset 41d60500bf23
76
+ [7c525059a49a] [v0.2.1]
77
+
78
+ * History.rdoc, Rakefile, lib/fivefish.rb:
79
+ Fix mistaken dep on RDoc 5.
80
+ [41d60500bf23]
81
+
82
+ * .hgtags:
83
+ Added tag v0.2.0 for changeset 04ce68326c69
84
+ [56671ca42702]
85
+
86
+ * .hgsigs:
87
+ Added signature for changeset 066f1d5c4cad
88
+ [04ce68326c69] [v0.2.0]
89
+
90
+ * .gems, .hoerc, Gemfile, Manifest.txt, Rakefile, rdoc-generator-
91
+ fivefish.gemspec:
92
+ Pin versions of uglifier and less to last working versions.
93
+ [066f1d5c4cad]
94
+
95
+ * Rakefile:
96
+ Remove outdated gemspec attribute
97
+ [085210da8665]
98
+
99
+ * History.rdoc, Rakefile, lib/fivefish.rb:
100
+ Bump the minor version, update history
101
+ [c8020f3a3530]
102
+
103
+ * .gems, .ruby-gemset, .ruby-version, .rvmrc, Rakefile:
104
+ Bump Inversion and Loggabilty dep
105
+ [18ba8dcfb3cc]
106
+
107
+ 2015-03-17 Michael Granger <ged@FaerieMUD.org>
108
+
109
+ * .gems, .rvm.gems, .rvmrc, Manifest.txt,
110
+ lib/rdoc/generator/fivefish.rb, spec/fivefish_spec.rb,
111
+ spec/helpers.rb, spec/rdoc/generator/fivefish_spec.rb:
112
+ Update for Ruby 2.2, newer RSpec.
113
+ [1d9afbc75528]
114
+
115
+ 2013-03-26 Michael Granger <ged@FaerieMUD.org>
116
+
117
+ * .hgtags:
118
+ Added tag v0.1.0 for changeset b08f3b479c38
119
+ [42b5e95ad46f]
120
+
121
+ * .hgsigs:
122
+ Added signature for changeset 55973eb0bf4f
123
+ [b08f3b479c38] [v0.1.0]
124
+
125
+ * Manifest.txt, lib/rdoc/generator/fivefish.rb:
126
+ Fix a logging bug, update manifest.
127
+ [55973eb0bf4f]
128
+
129
+ 2013-03-25 Michael Granger <ged@FaerieMUD.org>
130
+
131
+ * History.rdoc:
132
+ Bump minor version, update history
133
+ [1b4c566e05d9]
134
+
135
+ * .rvm.gems, Rakefile, lib/rdoc/generator/fivefish.rb,
136
+ spec/rdoc/generator/fivefish_spec.rb:
137
+ Add specs for generation
138
+ [8b00f8accf9a]
139
+
140
+ 2013-03-13 Michael Granger <ged@FaerieMUD.org>
141
+
142
+ * data/rdoc-generator-fivefish/templates/index.tmpl,
143
+ lib/rdoc/generator/fivefish.rb:
144
+ Use the method list given to the layout template instead of re-
145
+ adding it to the index.
146
+ [12f9ad3fca08]
147
+
148
+ * .tm_properties:
149
+ Fix indentation settings in project properties
150
+ [c19fd8caf982]
151
+
152
+ * .rvm.gems, Rakefile:
153
+ Update dependencies
154
+ [12717324475e]
155
+
156
+ 2013-02-27 Michael Granger <ged@FaerieMUD.org>
157
+
158
+ * assets/css/fivefish.css, data/rdoc-generator-
159
+ fivefish/templates/index.tmpl:
160
+ Add some CSS and module-index visual tweaks
161
+ [d5da607c0b75]
162
+
163
+ * lib/rdoc/generator/fivefish.rb:
164
+ Make the synopsis-extraction more intelligent
165
+ [1292bcb882d1]
166
+
167
+ * tasks/bootstrap.rb:
168
+ Fix js asset-generation
169
+ [7555ebbb71d3]
170
+
171
+ * data/rdoc-generator-fivefish/templates/class.tmpl:
172
+ Add support for module extension
173
+ [5b1f8dfa8d98]
174
+
175
+ * .tm_properties, Rakefile, lib/fivefish.rb, lib/rdoc/discover.rb,
176
+ spec/fivefish_spec.rb, spec/helpers.rb,
177
+ spec/rdoc/generator/fivefish_spec.rb:
178
+ Add updates and basic specs for RDoc 4.
179
+ [7b178d4789f8]
180
+
181
+ 2013-02-26 Michael Granger <ged@FaerieMUD.org>
182
+
183
+ * .rvmrc:
184
+ Test under Ruby 2.0 by default
185
+ [aa192ca24f91]
186
+
187
+ * .rvm.gems, Rakefile:
188
+ Require RDoc 4
189
+ [40d218e5ac12]
190
+
191
+ * data/rdoc-generator-fivefish/templates/layout.tmpl,
192
+ lib/rdoc/generator/fivefish.rb:
193
+ Add an --additional-stylesheet option
194
+ [a220e32a6911]
195
+
196
+ 2013-02-08 Michael Granger <ged@FaerieMUD.org>
197
+
198
+ * .rvm.gems:
199
+ Bump the version of less in rvmrc
200
+ [9e0e513b260e]
201
+
202
+ * assets/css/fivefish.css:
203
+ Make the anchor and top links less obnoxious
204
+ [5d4baba26c9e]
205
+
206
+ * .rvm.gems, Rakefile:
207
+ Update dependencies
208
+ [380609a110db]
209
+
210
+ 2012-12-10 Michael Granger <ged@FaerieMUD.org>
211
+
212
+ * .rvm.gems, Rakefile, lib/fivefish.rb, lib/rdoc/discover.rb,
213
+ lib/rdoc/generator/fivefish.rb:
214
+ Update for RDoc 4
215
+ [06e965cb1905]
216
+
217
+ 2012-09-12 Michael Granger <ged@FaerieMUD.org>
218
+
219
+ * .hgtags:
220
+ Added tag v0.0.1 for changeset dc96dffc23e0
221
+ [b33f8d965c61]
222
+
223
+ * .hgsigs:
224
+ Added signature for changeset e900e8771607
225
+ [dc96dffc23e0] [v0.0.1]
226
+
227
+ * History.rdoc:
228
+ Update the history doc
229
+ [e900e8771607]
230
+
231
+ * tasks/bootstrap.rb:
232
+ Clone instead of qcloning the bootstrap repo
233
+ [ef81a5b81b7f]
234
+
235
+ * tasks/bootstrap.rb:
236
+ Use my bitbucket clone of bootstrap.
237
+ [fd83414d9340]
238
+
239
+ * README.rdoc:
240
+ Updated the README.
241
+ [6bef1f941287]
242
+
243
+ 2012-07-27 Michael Granger <ged@FaerieMUD.org>
244
+
245
+ * assets/css/fivefish.css:
246
+ Adding line-height to description Ps
247
+ [4eebebca05bc]
248
+
249
+ 2012-07-16 Michael Granger <ged@FaerieMUD.org>
250
+
251
+ * assets/js/fivefish.js:
252
+ Guard against empty search terms when assigning the window location.
253
+ [b445ec11168d]
254
+
255
+ 2012-07-03 Michael Granger <ged@FaerieMUD.org>
256
+
257
+ * data/rdoc-generator-fivefish/templates/layout.tmpl:
258
+ Fix mismatched closing tag
259
+ [d915921801c2]
260
+
261
+ 2012-06-20 Michael Granger <ged@FaerieMUD.org>
262
+
263
+ * data/rdoc-generator-fivefish/templates/layout.tmpl:
264
+ Uniquify the class list in the dropdown menu.
265
+ [b8526150b584]
266
+
267
+ * .rvm.gems, Rakefile:
268
+ Update dependencies.
269
+ [39bc51d339d9]
270
+
271
+ * assets/css/fivefish.css:
272
+ Make default H3s less significant than default H2s. (fixes #1)
273
+ [d55012b4d9f3]
274
+
275
+ 2012-06-06 Michael Granger <ged@FaerieMUD.org>
276
+
277
+ * Merged with 57:b9337d344ae5
278
+ [4ada6b47ee94]
279
+
280
+ * .rvm.gems:
281
+ Include hoe-deveiate in the RVMRC gemset
282
+ [80edef24f833]
283
+
284
+ 2012-05-30 Michael Granger <ged@FaerieMUD.org>
285
+
286
+ * assets/css/fivefish.css:
287
+ Try another CSS strategy for the offset anchor targets.
288
+ [b9337d344ae5]
289
+
290
+ 2012-05-21 Michael Granger <ged@FaerieMUD.org>
291
+
292
+ * README.rdoc, assets/js/fivefish.js, assets/js/jquery.hotkeys.js:
293
+ Add search hotkey shortcut
294
+ [8331c3a93b42]
295
+
296
+ * assets/css/fivefish.css:
297
+ Make section H3s stand out
298
+ [e969a0f6925c]
299
+
300
+ * assets/css/fivefish.css:
301
+ Fixed bottom margin for method aliases in class view
302
+ [f5dc93c8a5cc]
303
+
304
+ 2012-05-10 Michael Granger <ged@FaerieMUD.org>
305
+
306
+ * .rvm.gems, Manifest.txt, Rakefile:
307
+ Bump Inversion dependency to 0.10.
308
+ [070425e539a0]
309
+
310
+ 2012-05-07 Michael Granger <ged@FaerieMUD.org>
311
+
312
+ * data/rdoc-generator-fivefish/templates/class.tmpl, data/rdoc-
313
+ generator-fivefish/templates/index.tmpl,
314
+ lib/rdoc/generator/fivefish.rb:
315
+ Uniqueify classes and methods in the index lists.
316
+ [b1409e3dd6d0]
317
+
318
+ 2012-05-06 Michael Granger <ged@FaerieMUD.org>
319
+
320
+ * assets/css/fivefish.css:
321
+ Color section headers
322
+ [58ecea31b86f]
323
+
324
+ 2012-05-05 Michael Granger <ged@FaerieMUD.org>
325
+
326
+ * data/rdoc-generator-fivefish/templates/class.tmpl:
327
+ Fix call-seq section for methods
328
+ [c7f2f2e526de]
329
+
330
+ 2012-05-03 Michael Granger <ged@FaerieMUD.org>
331
+
332
+ * data/rdoc-generator-fivefish/templates/class.tmpl:
333
+ Allow in-files to wrap in the popover
334
+ [767883a35bae]
335
+
336
+ * assets/css/fivefish.css:
337
+ Clean up the :target style a bit, give the footer some space
338
+ [4f880994fae9]
339
+
340
+ 2012-05-02 Michael Granger <ged@FaerieMUD.org>
341
+
342
+ * data/rdoc-generator-fivefish/templates/class.tmpl:
343
+ Add a section for documenting superclass/includes/extensions
344
+ [8d4d26d415eb]
345
+
346
+ * assets/css/fivefish.css, assets/js/fivefish.js,
347
+ assets/js/jquery.hotkeys.js, assets/js/stringscore.js, data/rdoc-
348
+ generator-fivefish/templates/class.tmpl, data/rdoc-generator-
349
+ fivefish/templates/layout.tmpl, tasks/bootstrap.rb,
350
+ tasks/fivefish.rb:
351
+ Replace experimental modal search with simpler search dropdown
352
+ [2dd1e47301af]
353
+
354
+ * lib/rdoc/generator/fivefish.rb:
355
+ Remove leftover debugging dependency
356
+ [c4b371b24a8b]
357
+
358
+ * tasks/bootstrap.rb:
359
+ Corrected name of the boostrap repo
360
+ [8a2816ae7829]
361
+
362
+ 2012-04-19 Michael Granger <ged@FaerieMUD.org>
363
+
364
+ * data/rdoc-generator-fivefish/templates/index.tmpl,
365
+ lib/rdoc/generator/fivefish.rb:
366
+ Handle the lack of a main page
367
+ [ee0ddf2fabcf]
368
+
369
+ * lib/rdoc/generator/fivefish.rb:
370
+ Read templates as UTF-8
371
+ [1e5485f81d96]
372
+
373
+ 2012-04-12 Michael Granger <ged@FaerieMUD.org>
374
+
375
+ * data/rdoc-generator-fivefish/templates/layout.tmpl:
376
+ Link to the fivefish page on deveiate
377
+ [9867f57bb826]
378
+
379
+ 2012-04-08 Michael Granger <ged@FaerieMUD.org>
380
+
381
+ * assets/css/fivefish.css:
382
+ Make CODE tags the same color as PREs
383
+ [134a5fca4f1a]
384
+
385
+ 2012-04-07 Michael Granger <ged@FaerieMUD.org>
386
+
387
+ * assets/js/fivefish.js, data/rdoc-generator-
388
+ fivefish/templates/layout.tmpl:
389
+ Read link prefixes from the page, highlight index search matches
390
+ [d68749340ff4]
391
+
392
+ * assets/css/fivefish.css:
393
+ Switch code highlighting to light theme based on Solarized, populate
394
+ empty index search areas
395
+ [ec892c1f462d]
396
+
397
+ * tasks/fivefish.rb:
398
+ Don't compress fivefish.css, as Less fscks up the ordering
399
+ [27f0ddeb23b0]
400
+
401
+ 2012-04-06 Michael Granger <ged@FaerieMUD.org>
402
+
403
+ * assets/js/fivefish.js, lib/rdoc/generator/fivefish.rb:
404
+ Checkpoint of work on the searchbox
405
+ [70ae433154db]
406
+
407
+ * assets/css/fivefish.css, assets/js/fivefish.js, data/rdoc-generator-
408
+ fivefish/templates/layout.tmpl, lib/rdoc/generator/fivefish.rb:
409
+ Start converting search to a Bootstrap modal component
410
+ [ca55b579db09]
411
+
412
+ 2012-04-04 Michael Granger <ged@FaerieMUD.org>
413
+
414
+ * assets/css/fivefish.css, assets/js/fivefish.js, data/rdoc-generator-
415
+ fivefish/templates/layout.tmpl, lib/rdoc/generator/fivefish.rb,
416
+ tasks/bootstrap.rb, tasks/fonts.rb:
417
+ Start reworking search a bit
418
+ [d30a98a6c599]
419
+
420
+ * .hgignore:
421
+ Merged with e198a1b8b529
422
+ [9af3e880bc46]
423
+
424
+ 2012-04-03 Michael Granger <ged@FaerieMUD.org>
425
+
426
+ * .hgignore, assets/img/glyphicons-halflings-white.png, assets/img
427
+ /glyphicons-halflings.png, assets/js/bootstrap.js, data/rdoc-
428
+ generator-fivefish/css/fivefish.min.css, data/rdoc-generator-
429
+ fivefish/js/fivefish.min.js:
430
+ Remove generated sources
431
+ [e198a1b8b529]
432
+
433
+ 2012-04-04 Michael Granger <ged@FaerieMUD.org>
434
+
435
+ * Manifest.txt, data/rdoc-generator-fivefish/css/fivefish.min.css:
436
+ Add minified bootstrap.js to the manifest
437
+ [cfaa6a9fe04c]
438
+
439
+ * .hgignore, assets/js/bootstrap.js, assets/js/fivefish.js, data/rdoc-
440
+ generator-fivefish/js/fivefish.min.js, data/rdoc-generator-
441
+ fivefish/templates/layout.tmpl, tasks/bootstrap.rb,
442
+ tasks/fivefish.rb:
443
+ Checkpoint
444
+ [86c7949ee51c]
445
+
446
+ 2012-04-03 Michael Granger <ged@FaerieMUD.org>
447
+
448
+ * .hoerc, .rvm.gems, Manifest.txt, README.rdoc, Rakefile,
449
+ assets/css/fivefish.css, assets/fonts/OFL.txt, assets/img
450
+ /glyphicons-halflings-white.png, assets/img/glyphicons-
451
+ halflings.png, assets/js/bootstrap.js, assets/js/fivefish.js,
452
+ assets/js/jquery.dropdown.js, assets/js/jquery.hotkeys.js, data
453
+ /rdoc-generator-fivefish/css/bootstrap-responsive.min.css, data
454
+ /rdoc-generator-fivefish/css/bootstrap.min.css, data/rdoc-generator-
455
+ fivefish/css/fivefish.css, data/rdoc-generator-
456
+ fivefish/css/fivefish.min.css, data/rdoc-generator-
457
+ fivefish/fonts/OFL.txt, data/rdoc-generator-fivefish/img/glyphicons-
458
+ halflings-white.png, data/rdoc-generator-fivefish/img/glyphicons-
459
+ halflings.png, data/rdoc-generator-fivefish/js/bootstrap.min.js,
460
+ data/rdoc-generator-fivefish/js/fivefish.js, data/rdoc-generator-
461
+ fivefish/js/fivefish.min.js, data/rdoc-generator-
462
+ fivefish/js/jquery.dropdown.js, data/rdoc-generator-
463
+ fivefish/js/jquery.hotkeys.js, data/rdoc-generator-fivefish
464
+ /prototype-classpage.html, data/rdoc-generator-
465
+ fivefish/prototype.html, data/rdoc-generator-fivefish/templates
466
+ /devel-layout.tmpl, data/rdoc-generator-
467
+ fivefish/templates/layout.tmpl, lib/rdoc/generator/fivefish.rb,
468
+ tasks/bootstrap.rb, tasks/fivefish.rb, tasks/fonts.rb:
469
+ Checkpoint of generated assets change
470
+ [aba63c3b26ac]
471
+
472
+ * Manifest.txt:
473
+ Trim the manifest down to what it should be ideally
474
+ [9133db708798]
475
+
476
+ * tasks/bootstrap.rb:
477
+ Add a Rake task lib for bootstrap stuff
478
+ [be8de627625b]
479
+
480
+ * Rakefile, assets/fonts/IstokWeb-Bold.ttf, assets/fonts/IstokWeb-
481
+ BoldItalic.ttf, assets/fonts/IstokWeb-Italic.ttf, assets/fonts
482
+ /IstokWeb-Regular.ttf, data/rdoc-generator-fivefish/fonts/IstokWeb-
483
+ Bold.ttf, data/rdoc-generator-fivefish/fonts/IstokWeb-
484
+ BoldItalic.ttf, data/rdoc-generator-fivefish/fonts/IstokWeb-
485
+ Italic.ttf, data/rdoc-generator-fivefish/fonts/IstokWeb-Regular.ttf,
486
+ data/rdoc-generator-fivefish/js/fivefish.js, data/rdoc-generator-
487
+ fivefish/templates/devel-layout.tmpl, data/rdoc-generator-
488
+ fivefish/templates/layout.tmpl, lib/rdoc/generator/fivefish.rb:
489
+ Checkpoint
490
+ [6f47213e31e5]
491
+
492
+ 2012-04-02 Michael Granger <ged@FaerieMUD.org>
493
+
494
+ * .rvm.gems, Rakefile, data/rdoc-generator-fivefish/js/fivefish.js,
495
+ data/rdoc-generator-fivefish/templates/file.tmpl,
496
+ lib/rdoc/generator/fivefish.rb:
497
+ First whack at the quicksearch
498
+ [2aedd78b8195]
499
+
500
+ * data/rdoc-generator-fivefish/css/fivefish.css, data/rdoc-generator-
501
+ fivefish/js/fivefish.js, data/rdoc-generator-
502
+ fivefish/templates/index.tmpl, lib/rdoc/generator/fivefish.rb:
503
+ Work on the source-toggle, index view
504
+ [dfce59e01bf2]
505
+
506
+ 2012-04-01 Michael Granger <ged@FaerieMUD.org>
507
+
508
+ * .rvm.gems, Rakefile:
509
+ Updating to Inversion 0.8
510
+ [0974c250f677]
511
+
512
+ 2012-03-31 Michael Granger <ged@FaerieMUD.org>
513
+
514
+ * .rvm.gems, Rakefile, data/rdoc-generator-
515
+ fivefish/css/bootstrap.min.css, data/rdoc-generator-
516
+ fivefish/css/fivefish.css, data/rdoc-generator-
517
+ fivefish/js/bootstrap.min.js, data/rdoc-generator-
518
+ fivefish/js/fivefish.js, data/rdoc-generator-
519
+ fivefish/js/jquery.dropdown.js, data/rdoc-generator-
520
+ fivefish/js/jquery.hotkeys.js, data/rdoc-generator-
521
+ fivefish/templates/class.tmpl, data/rdoc-generator-
522
+ fivefish/templates/index.tmpl, data/rdoc-generator-
523
+ fivefish/templates/layout.tmpl, lib/rdoc/generator/fivefish.rb:
524
+ Checkpoint commit
525
+ [bd533dd5f839]
526
+
527
+ 2012-03-21 Michael Granger <ged@FaerieMUD.org>
528
+
529
+ * data/rdoc-generator-fivefish/css/fivefish.css, data/rdoc-generator-
530
+ fivefish/templates/class.tmpl, lib/rdoc/generator/fivefish.rb:
531
+ Visual tweaks, make the classes of method-sections more useful
532
+ [71f937daec29]
533
+
534
+ 2012-03-19 Michael Granger <ged@FaerieMUD.org>
535
+
536
+ * data/rdoc-generator-fivefish/templates/class.tmpl:
537
+ Fix the "in files" and namespace sections of the class template
538
+ [c8cc6f0c1dfb]
539
+
540
+ 2012-03-16 Michael Granger <ged@FaerieMUD.org>
541
+
542
+ * data/rdoc-generator-fivefish/css/fivefish.css:
543
+ Fix source code display (rehide for now)
544
+ [3108e8019c61]
545
+
546
+ * .rvm.gems, Rakefile:
547
+ Depend on Inversion 0.6.1
548
+ [9c8c63ade57f]
549
+
550
+ * data/rdoc-generator-fivefish/css/fivefish.css:
551
+ Switch to Google fonts for the time being
552
+ [cd7480256f36]
553
+
554
+ * .hgignore, .hoerc, Manifest.txt, Rakefile:
555
+ Update build system
556
+ [c68ddcf860f7]
557
+
558
+ * Manifest.txt, Rakefile, data/rdoc-generator-
559
+ fivefish/css/fivefish.css, data/rdoc-generator-fivefish/fonts
560
+ /IstokWeb-Bold.ttf, data/rdoc-generator-fivefish/fonts/IstokWeb-
561
+ BoldItalic.ttf, data/rdoc-generator-fivefish/fonts/IstokWeb-
562
+ Italic.ttf, data/rdoc-generator-fivefish/fonts/IstokWeb-Regular.ttf,
563
+ data/rdoc-generator-fivefish/fonts/OFL.txt:
564
+ Checkpoint commit
565
+ [6cc238d570fa]
566
+
567
+ 2012-03-14 Michael Granger <ged@FaerieMUD.org>
568
+
569
+ * data/rdoc-generator-fivefish/css/fivefish.css:
570
+ Code section/description cleanup
571
+ [8759afdf52cc]
572
+
573
+ * data/rdoc-generator-fivefish/css/fivefish.css, data/rdoc-generator-
574
+ fivefish/templates/class.tmpl, lib/rdoc/generator/fivefish.rb:
575
+ Presentation cleanup, some namespace fixes for the templates,
576
+ DATADIR from ENV support
577
+ [562065ecec19]
578
+
579
+ * lib/rdoc/generator/fivefish.rb:
580
+ Fix the dev datadir path
581
+ [661f51b70efb]
582
+
583
+ * Manifest.txt:
584
+ Fix the manifest
585
+ [c26379b81450]
586
+
587
+ * data/fivefish/css/bootstrap-responsive.min.css,
588
+ data/fivefish/css/bootstrap.min.css, data/fivefish/css/fivefish.css,
589
+ data/fivefish/img/glyphicons-halflings-white.png, data/fivefish/img
590
+ /glyphicons-halflings.png, data/fivefish/js/bootstrap.min.js,
591
+ data/fivefish/js/fivefish.js, data/fivefish/js/jquery-1.7.1.min.js,
592
+ data/fivefish/prototype-classpage.html,
593
+ data/fivefish/prototype.html, data/fivefish/templates/class.tmpl,
594
+ data/fivefish/templates/file.tmpl,
595
+ data/fivefish/templates/index.tmpl,
596
+ data/fivefish/templates/layout.tmpl, data/rdoc-generator-
597
+ fivefish/css/bootstrap-responsive.min.css, data/rdoc-generator-
598
+ fivefish/css/bootstrap.min.css, data/rdoc-generator-
599
+ fivefish/css/fivefish.css, data/rdoc-generator-fivefish/img
600
+ /glyphicons-halflings-white.png, data/rdoc-generator-fivefish/img
601
+ /glyphicons-halflings.png, data/rdoc-generator-
602
+ fivefish/js/bootstrap.min.js, data/rdoc-generator-
603
+ fivefish/js/fivefish.js, data/rdoc-generator-
604
+ fivefish/js/jquery-1.7.1.min.js, data/rdoc-generator-fivefish
605
+ /prototype-classpage.html, data/rdoc-generator-
606
+ fivefish/prototype.html, data/rdoc-generator-
607
+ fivefish/templates/class.tmpl, data/rdoc-generator-
608
+ fivefish/templates/file.tmpl, data/rdoc-generator-
609
+ fivefish/templates/index.tmpl, data/rdoc-generator-
610
+ fivefish/templates/layout.tmpl:
611
+ Fix the name of the data directory
612
+ [6bc0c6a72134]
613
+
614
+ * lib/rdoc/generator/fivefish.rb:
615
+ Fix the data-directory finder
616
+ [8899160997ea]
617
+
618
+ * Manifest.txt:
619
+ Update the manifest
620
+ [25da78cfaa06]
621
+
622
+ * .hoerc:
623
+ Fix the project .hoerc
624
+ [0359ef915e3d]
625
+
626
+ * .hoerc, Manifest.txt, Rakefile, data/fivefish/css/bootstrap-
627
+ responsive.css, data/fivefish/css/bootstrap.css,
628
+ data/fivefish/css/fivefish.css, data/fivefish/js/bootstrap.js,
629
+ data/fivefish/js/fivefish.js, data/fivefish/js/jquery-1.7.1.js,
630
+ data/fivefish/js/jquery-1.7.1.min.js,
631
+ data/fivefish/templates/class.tmpl,
632
+ data/fivefish/templates/layout.tmpl:
633
+ Checkpoint commit
634
+ [ab2cefa70174]
635
+
636
+ 2012-03-13 Michael Granger <ged@FaerieMUD.org>
637
+
638
+ * .rvm.gems, data/fivefish/templates/class.tmpl,
639
+ data/fivefish/templates/layout.tmpl, lib/rdoc/generator/fivefish.rb:
640
+ Checkpoint commit; got class views rendering, but not styled
641
+ [021779066b77]
642
+
643
+ 2012-03-12 Michael Granger <ged@FaerieMUD.org>
644
+
645
+ * .hgignore, .rvm.gems, History.rdoc, README.rdoc, Rakefile,
646
+ data/fivefish/css/bootstrap-responsive.css, data/fivefish/css
647
+ /bootstrap-responsive.min.css, data/fivefish/css/bootstrap.css,
648
+ data/fivefish/css/bootstrap.min.css, data/fivefish/css/fivefish.css,
649
+ data/fivefish/img/glyphicons-halflings-white.png, data/fivefish/img
650
+ /glyphicons-halflings.png, data/fivefish/js/bootstrap.js,
651
+ data/fivefish/js/bootstrap.min.js, data/fivefish/js/fivefish.js,
652
+ data/fivefish/js/jquery-1.7.1.js, data/fivefish/prototype-
653
+ classpage.html, data/fivefish/prototype.html,
654
+ data/fivefish/templates/class.tmpl,
655
+ data/fivefish/templates/file.tmpl,
656
+ data/fivefish/templates/index.tmpl,
657
+ data/fivefish/templates/layout.tmpl, lib/fivefish.rb,
658
+ lib/rdoc/discover.rb, lib/rdoc/generator/fivefish.rb:
659
+ Checkpoint commit
660
+ [083bb9b1a6de]
661
+
662
+ 2012-03-11 Michael Granger <ged@FaerieMUD.org>
663
+
664
+ * lib/fivefish.rb, lib/rdoc/generator/fivefish.rb:
665
+ Move fivefish.rb into the right subdirectory
666
+ [0c3cc13f6b4b]
667
+
668
+ * bin/fivefish:
669
+ Remove bin/ directory
670
+ [789988325927]
671
+
672
+ * .autotest, .rvmrc, Manifest.txt, Rakefile, bin/fivefish,
673
+ lib/fivefish.rb:
674
+ Initial hoe project template
675
+ [c443aac1fa2d]