core_docs 0.9.6 → 0.9.7
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/CHANGELOG.md +6 -0
- data/Rakefile +5 -0
- data/lib/core_docs/core_docs_26/checksums +462 -462
- data/lib/core_docs/core_docs_26/object_types +0 -0
- data/lib/core_docs/core_docs_26/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_27/checksums +460 -460
- data/lib/core_docs/core_docs_27/object_types +0 -0
- data/lib/core_docs/core_docs_27/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_30/checksums +514 -513
- data/lib/core_docs/core_docs_30/object_types +0 -0
- data/lib/core_docs/core_docs_30/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_31/checksums +522 -0
- data/lib/core_docs/core_docs_31/complete +0 -0
- data/lib/core_docs/core_docs_31/object_types +0 -0
- data/lib/core_docs/core_docs_31/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_31/proxy_types +0 -0
- data/lib/core_docs/version.rb +1 -1
- data/lib/core_docs.rb +2 -2
- metadata +8 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d98c78d9139bc6b8f25828959e92e6a5614cb201b5fb90dcc61abdfa37d1325
|
4
|
+
data.tar.gz: 0513f7b6c38a1be3f416c14281b83d5c3a253a219a37f50b84edf4b0c699c5ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e834ed96831e7b0d87a2edc84105b1517dd6ac5287dd4b9e3a5f28353087db1a7896fb93c61cad053959e25509d04707947dd4097b37ac5dfc7dac6421f44809
|
7
|
+
data.tar.gz: 6b3933da56f767a0d02c488abbb4e2e52c9189eaeb5bef8219de58b47001e895e170c57e66f0287f450e529a067b1fac873ea86511e5e77c53e88c5d2501ac85
|
data/CHANGELOG.md
CHANGED
data/Rakefile
CHANGED
@@ -134,4 +134,9 @@ end
|
|
134
134
|
desc "Generate the latest Ruby 3.0 docs"
|
135
135
|
task "gen30" do
|
136
136
|
generate_docs_for('30', Latest::Ruby.new(Latest::MRI.new('3.0', Latest::MRIRetriever.new)))
|
137
|
+
end
|
138
|
+
|
139
|
+
desc "Generate the latest Ruby 3.1 docs"
|
140
|
+
task "gen31" do
|
141
|
+
generate_docs_for('31', Latest::Ruby.new(Latest::MRI.new('3.1', Latest::MRIRetriever.new)))
|
137
142
|
end
|