rorvswild_theme_rdoc 0.1 → 0.3.0

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. data/LICENSE +29 -0
  3. data/README.md +27 -0
  4. data/lib/rdoc/discover.rb +1 -0
  5. data/lib/rdoc/generator/template/rorvswild/_dialog_search.rhtml +16 -0
  6. data/lib/rdoc/generator/template/rorvswild/_footer.rhtml +4 -0
  7. data/lib/rdoc/generator/template/rorvswild/_head.rhtml +25 -0
  8. data/lib/rdoc/generator/template/rorvswild/_navigation.rhtml +5 -0
  9. data/lib/rdoc/generator/template/rorvswild/_sidebar_VCS_info.rhtml +19 -0
  10. data/lib/rdoc/generator/template/rorvswild/_sidebar_classes.rhtml +48 -0
  11. data/lib/rdoc/generator/template/rorvswild/_sidebar_constants.rhtml +10 -0
  12. data/lib/rdoc/generator/template/rorvswild/_sidebar_extends.rhtml +15 -0
  13. data/lib/rdoc/generator/template/rorvswild/_sidebar_in_files.rhtml +8 -0
  14. data/lib/rdoc/generator/template/rorvswild/_sidebar_includes.rhtml +15 -0
  15. data/lib/rdoc/generator/template/rorvswild/_sidebar_installed.rhtml +15 -0
  16. data/lib/rdoc/generator/template/rorvswild/_sidebar_methods.rhtml +21 -0
  17. data/lib/rdoc/generator/template/rorvswild/_sidebar_pages.rhtml +34 -0
  18. data/lib/rdoc/generator/template/rorvswild/_sidebar_parent.rhtml +41 -0
  19. data/lib/rdoc/generator/template/rorvswild/_sidebar_sections.rhtml +11 -0
  20. data/lib/rdoc/generator/template/rorvswild/_sidebar_table_of_contents.rhtml +40 -0
  21. data/lib/rdoc/generator/template/rorvswild/_sidebar_toggle.rhtml +3 -0
  22. data/lib/rdoc/generator/template/rorvswild/_topbar.rhtml +12 -0
  23. data/lib/rdoc/generator/template/rorvswild/class.rhtml +187 -0
  24. data/lib/rdoc/generator/template/rorvswild/css/fonts.css +34 -0
  25. data/lib/rdoc/generator/template/rorvswild/css/rdoc.css +856 -0
  26. data/lib/rdoc/generator/template/rorvswild/fonts/Inter-Bold.woff2 +0 -0
  27. data/lib/rdoc/generator/template/rorvswild/fonts/Inter-Italic.woff2 +0 -0
  28. data/lib/rdoc/generator/template/rorvswild/fonts/Inter-Regular.woff2 +0 -0
  29. data/lib/rdoc/generator/template/rorvswild/fonts/MonaspaceNeon-Bold.woff2 +0 -0
  30. data/lib/rdoc/generator/template/rorvswild/fonts/MonaspaceNeon-Regular.woff2 +0 -0
  31. data/lib/rdoc/generator/template/rorvswild/index.rhtml +22 -0
  32. data/lib/rdoc/generator/template/rorvswild/js/darkfish.js +167 -0
  33. data/lib/rdoc/generator/template/rorvswild/js/search.js +110 -0
  34. data/lib/rdoc/generator/template/rorvswild/page.rhtml +15 -0
  35. data/lib/rdoc/generator/template/rorvswild/servlet_not_found.rhtml +15 -0
  36. data/lib/rdoc/generator/template/rorvswild/servlet_root.rhtml +63 -0
  37. data/lib/rdoc/generator/template/rorvswild/table_of_contents.rhtml +63 -0
  38. data/lib/rorvswild_theme_rdoc/patches/rdoc_before_6.13.0.rb +10 -0
  39. data/lib/rorvswild_theme_rdoc/patches/rdoc_before_6.8.0.rb +16 -0
  40. data/lib/rorvswild_theme_rdoc/version.rb +3 -0
  41. data/lib/rorvswild_theme_rdoc.rb +5 -0
  42. metadata +48 -8
@@ -0,0 +1,34 @@
1
+ @font-face {
2
+ font-family: "Monaspace";
3
+ font-style: normal;
4
+ font-weight: 400;
5
+ src: url('<%= asset_path('../fonts/MonaspaceNeon-Regular.woff2') %>') format('woff2');
6
+ }
7
+
8
+ @font-face {
9
+ font-family: "Monaspace";
10
+ font-style: normal;
11
+ font-weight: 700;
12
+ src: url('<%= asset_path('../fonts/MonaspaceNeon-Bold.woff2') %>') format('woff2');
13
+ }
14
+
15
+ @font-face {
16
+ font-family: "Inter";
17
+ font-style: normal;
18
+ font-weight: 400;
19
+ src: url('<%= asset_path('../fonts/Inter-Regular.woff2') %>') format('woff2');
20
+ }
21
+
22
+ @font-face {
23
+ font-family: "Inter";
24
+ font-style: italic;
25
+ font-weight: 400;
26
+ src: url('<%= asset_path('../fonts/Inter-Italic.woff2') %>') format('woff2');
27
+ }
28
+
29
+ @font-face {
30
+ font-family: "Inter";
31
+ font-style: normal;
32
+ font-weight: 700;
33
+ src: url('<%= asset_path('../fonts/Inter-Bold.woff2') %>') format('woff2');
34
+ }