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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.editorconfig +16 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/ChangeLog +675 -0
- data/History.md +20 -16
- data/Manifest.txt +29 -0
- data/README.md +24 -30
- data/data/rdoc-generator-sixfish/css/sixfish.css +1184 -2
- data/data/rdoc-generator-sixfish/css/sixfish.css.map +7 -1
- data/data/rdoc-generator-sixfish/fa/light.js +0 -0
- data/data/rdoc-generator-sixfish/fa/light.svg +0 -0
- data/data/rdoc-generator-sixfish/fa/loader.js +1 -0
- data/data/rdoc-generator-sixfish/fa/regular.js +1 -0
- data/data/rdoc-generator-sixfish/fa/regular.svg +662 -0
- data/data/rdoc-generator-sixfish/fa/solid.js +1 -0
- data/data/rdoc-generator-sixfish/fa/solid.svg +662 -0
- data/data/rdoc-generator-sixfish/images/glyphicons-28-search.png +0 -0
- data/data/rdoc-generator-sixfish/js/jquery-3.1.1.js +10220 -0
- data/data/rdoc-generator-sixfish/js/sixfish.min.js +99 -0
- data/data/rdoc-generator-sixfish/templates/class.tmpl +180 -179
- data/data/rdoc-generator-sixfish/templates/file.tmpl +16 -4
- data/data/rdoc-generator-sixfish/templates/index.tmpl +48 -77
- data/data/rdoc-generator-sixfish/templates/layout.tmpl +51 -71
- data/lib/rdoc/discover.rb +1 -1
- data/lib/rdoc/generator/sixfish.rb +66 -45
- data/lib/sixfish.rb +9 -10
- data/spec/rdoc/generator/sixfish_spec.rb +16 -22
- data/spec/sixfish_spec.rb +5 -1
- data.tar.gz.sig +3 -2
- metadata +163 -63
- metadata.gz.sig +0 -0
- data/data/rdoc-generator-sixfish/css/fa-solid-900.515704be.ttf +0 -0
- data/data/rdoc-generator-sixfish/css/fa-solid-900.7ba04835.svg +0 -1
- data/data/rdoc-generator-sixfish/css/fa-solid-900.8c589fd1.eot +0 -0
- data/data/rdoc-generator-sixfish/css/fa-solid-900.c7b072c6.woff +0 -0
- data/data/rdoc-generator-sixfish/css/fa-solid-900.f2049a98.woff2 +0 -0
- data/data/rdoc-generator-sixfish/js/sixfish.js +0 -39
- data/data/rdoc-generator-sixfish/js/sixfish.js.map +0 -1
- data/lib/inversion/template/striptag.rb +0 -42
- data/lib/sixfish/patches.rb +0 -73
data/History.md
CHANGED
@@ -1,35 +1,39 @@
|
|
1
|
-
|
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
|
-
|
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
|
-
|
11
|
+
- Bump dependency on RDoc to 5.0.
|
12
12
|
|
13
|
-
Changes:
|
14
13
|
|
15
|
-
|
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
|
-
|
19
|
+
== v0.2.0 [2017-01-17] Michael Granger <ged@FaerieMUD.org>
|
21
20
|
|
22
|
-
-
|
21
|
+
- Bump Inversion and Loggabilty dep
|
22
|
+
- Update for Ruby >2.2, newer RSpec.
|
23
23
|
|
24
24
|
|
25
|
-
|
25
|
+
== v0.1.0 [2013-02-27] Michael Granger <ged@FaerieMUD.org>
|
26
26
|
|
27
|
-
|
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
|
-
|
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
|
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
|
35
|
-
|
36
|
-
|
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
|
-
|
41
|
-
$ rake setup
|
31
|
+
After checking out the source, run:
|
42
32
|
|
43
|
-
|
33
|
+
$ rake newb
|
44
34
|
|
45
|
-
|
46
|
-
|
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
|
-
|
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
|
+
|