rdoc-generator-sixfish 0.3.1 → 0.5.0.pre20180710102525

Sign up to get free protection for your applications and to get access to all the features.
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/History.md CHANGED
@@ -1,35 +1,39 @@
1
- # Release History for rdoc-generator-sixfish
1
+ == v0.4.0 [2018-03-13] Michael Granger <ged@FaerieMUD.org>
2
2
 
3
- ---
4
- ## v0.3.1 [2024-03-04] Michael Granger <ged@faeriemud.org>
3
+ Enhancements:
5
4
 
6
- Bugfixes:
5
+ - Bump RDoc dependency to 6.0.
6
+ - Use TTF fonts instead of converting them to WOFF.
7
7
 
8
- - Fix broken a[name] links
9
8
 
9
+ == v0.3.0 [2017-01-22] Michael Granger <ged@FaerieMUD.org>
10
10
 
11
- ## v0.3.0 [2023-01-02] Michael Granger <ged@faeriemud.org>
11
+ - Bump dependency on RDoc to 5.0.
12
12
 
13
- Changes:
14
13
 
15
- - Unfloat/unbox definition lists other than class metadata.
14
+ == v0.2.1 [2017-01-17] Michael Granger <ged@FaerieMUD.org>
16
15
 
16
+ - Oops, didn't mean to depend on RDoc 5 quite yet.
17
17
 
18
- ## v0.2.1 [2022-12-22] Michael Granger <ged@faeriemud.org>
19
18
 
20
- Bugfixes:
19
+ == v0.2.0 [2017-01-17] Michael Granger <ged@FaerieMUD.org>
21
20
 
22
- - Fix method links for child classes; thanks to Mahlon E. Smith for the patch.
21
+ - Bump Inversion and Loggabilty dep
22
+ - Update for Ruby >2.2, newer RSpec.
23
23
 
24
24
 
25
- ## v0.2.0 [2022-12-01] Michael Granger <ged@faeriemud.org>
25
+ == v0.1.0 [2013-02-27] Michael Granger <ged@FaerieMUD.org>
26
26
 
27
- Fixes:
27
+ - Add some CSS and module-index visual tweaks
28
+ - Make the synopsis-extraction more intelligent
29
+ - Add support for module extension
30
+ - Add Ruby 2.0 support
31
+ - Add an --additional-stylesheet option
32
+ - Make the anchor and top links in titles less obnoxious
33
+ - Update for RDoc 4
28
34
 
29
- - Remove unused code and dependencies
30
35
 
31
-
32
- ## v0.1.0 [2022-11-15] Michael Granger <ged@FaerieMUD.org>
36
+ == v0.0.1 [2012-09-12] Michael Granger <ged@FaerieMUD.org>
33
37
 
34
38
  Initial release.
35
39
 
data/Manifest.txt ADDED
@@ -0,0 +1,29 @@
1
+ .editorconfig
2
+ .ruby-gemset
3
+ .ruby-version
4
+ ChangeLog
5
+ History.md
6
+ Manifest.txt
7
+ README.md
8
+ data/rdoc-generator-sixfish/css/sixfish.css
9
+ data/rdoc-generator-sixfish/css/sixfish.css.map
10
+ data/rdoc-generator-sixfish/fa/light.js
11
+ data/rdoc-generator-sixfish/fa/light.svg
12
+ data/rdoc-generator-sixfish/fa/loader.js
13
+ data/rdoc-generator-sixfish/fa/regular.js
14
+ data/rdoc-generator-sixfish/fa/regular.svg
15
+ data/rdoc-generator-sixfish/fa/solid.js
16
+ data/rdoc-generator-sixfish/fa/solid.svg
17
+ data/rdoc-generator-sixfish/images/glyphicons-28-search.png
18
+ data/rdoc-generator-sixfish/js/jquery-3.1.1.js
19
+ data/rdoc-generator-sixfish/js/sixfish.min.js
20
+ data/rdoc-generator-sixfish/templates/class.tmpl
21
+ data/rdoc-generator-sixfish/templates/file.tmpl
22
+ data/rdoc-generator-sixfish/templates/index.tmpl
23
+ data/rdoc-generator-sixfish/templates/layout.tmpl
24
+ lib/rdoc/discover.rb
25
+ lib/rdoc/generator/sixfish.rb
26
+ lib/sixfish.rb
27
+ spec/helpers.rb
28
+ spec/rdoc/generator/sixfish_spec.rb
29
+ spec/sixfish_spec.rb
data/README.md CHANGED
@@ -1,22 +1,15 @@
1
1
  # Sixfish RDoc
2
2
 
3
- home
4
- : https://hg.sr.ht/~ged/Sixfish
5
-
6
- code
7
- : https://hg.sr.ht/~ged/Sixfish
8
-
9
- github
10
- : https://github.com/ged/sixfish
11
-
12
- docs
13
- : https://deveiate.org/code/sixfish
14
-
3
+ * http://deveiate.org/sixfish.html
15
4
 
16
5
 
17
6
  ## Description
18
7
 
19
- A readable HTML generator for RDoc. It uses the [Bulma](https://bulma.io/) CSS framework.
8
+ A(nother) HTML(5) generator for RDoc.
9
+
10
+ It uses the {Skeleton Responsive CSS Boilerplate}[http://getskeleton.com/] for
11
+ the layout stuff, doesn't take up valuable horizontal real estate space with
12
+ indexes and stuff, and has a QuickSilver-like incremental searching.
20
13
 
21
14
 
22
15
  ## Installation
@@ -31,30 +24,21 @@ A readable HTML generator for RDoc. It uses the [Bulma](https://bulma.io/) CSS f
31
24
 
32
25
  ## Contributing
33
26
 
34
- You'll need [Yarn](https://yarnpkg.com/) to build this gem.
35
-
36
- You can check out the current development source [with Mercurial](https://hg.sr.ht/~ged/Sixfish)], or if you prefer Git, via the project's [Github mirror](https://github.com/ged/sixfish).
37
-
38
- After checking out the source and changing into the new directory, run:
27
+ You can check out the current development source {with
28
+ Mercurial}[http://bitbucket.org/ged/sixfish], or if you prefer Git, via the
29
+ project's {Github mirror}[https://github.com/ged/Sixfish-RDoc].
39
30
 
40
- $ gem install -Ng
41
- $ rake setup
31
+ After checking out the source, run:
42
32
 
43
- This task will install dependencies, and do any necessary development setup.
33
+ $ rake newb
44
34
 
45
-
46
- ## Authors
47
-
48
- - Michael Granger <ged@faeriemud.org>
35
+ This task will install any missing dependencies, run the tests/specs,
36
+ and generate the API documentation.
49
37
 
50
38
 
51
39
  ## License
52
40
 
53
- This uses the Bulma CSS Framework, and a licensed version of Font Awesome Pro 5.
54
-
55
- Sixfish itself is:
56
-
57
- Copyright © 2015-2022, Michael Granger
41
+ Copyright © 2015-2016, Michael Granger
58
42
  All rights reserved.
59
43
 
60
44
  Redistribution and use in source and binary forms, with or without
@@ -82,3 +66,13 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
82
66
  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
83
67
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
84
68
 
69
+ Sixfish uses the Skeleton Responsive CSS Boilerplate, which is used under the
70
+ following license terms:
71
+
72
+ Skeleton V2.0.4
73
+ Copyright 2014, Dave Gamache
74
+ www.getskeleton.com
75
+ Free to use under the MIT license.
76
+ http://www.opensource.org/licenses/mit-license.php
77
+ 12/29/2014
78
+