webri 1.0.4 → 1.0.5
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
- data/lib/webri/version.rb +1 -1
- data/lib/webri.rb +11 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8126b3386f31de686b660157944c3ce757e8e3029ad6fea215b9598fccd094a9
|
|
4
|
+
data.tar.gz: 64f67e9281e5d60b0194ee818a438ca4c2ce756f084dc588315e4aa41e193f6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c25e723bb8b3d03fd96e14f2bb552317ebbbfe5bde3a0867b2f9e5490d2d6b03bdd720a0f95fc987f8cf77300c15765d4811863e05f0a9b62920f0ab8cc6230
|
|
7
|
+
data.tar.gz: 7bd1e91181bd16f686379f49030ac7c8f284ab42de6aa4a163d07a9c2e44a4de000df7d487831b332b81fd7b484db741eb2c4ee95be5b2a3b93befdcd2ac95cc
|
data/lib/webri/version.rb
CHANGED
data/lib/webri.rb
CHANGED
|
@@ -34,6 +34,17 @@ class WebRI
|
|
|
34
34
|
# Get the info from the Ruby doc site's table of contents
|
|
35
35
|
# and build our @index_for_type.
|
|
36
36
|
def initialize(options = {})
|
|
37
|
+
msg = <<MSG
|
|
38
|
+
The release of Ruby 4.0 broke webri in a couple of ways:
|
|
39
|
+
|
|
40
|
+
- The documentation format changed from Darkfish to Alike,
|
|
41
|
+
thus breaking all the parsing.
|
|
42
|
+
- Class CGI was pushed out of the Ruby core.
|
|
43
|
+
|
|
44
|
+
Look for fixes in August 2026.
|
|
45
|
+
MSG
|
|
46
|
+
puts msg
|
|
47
|
+
exit
|
|
37
48
|
capture_options(options)
|
|
38
49
|
set_doc_release
|
|
39
50
|
get_toc_html
|