core_docs 0.9.3 → 0.9.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/Rakefile +5 -0
- data/lib/core_docs/core_docs_23/checksums +432 -431
- data/lib/core_docs/core_docs_23/object_types +0 -0
- data/lib/core_docs/core_docs_23/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_24/checksums +67 -67
- data/lib/core_docs/core_docs_24/object_types +0 -0
- data/lib/core_docs/core_docs_24/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_25/checksums +51 -51
- data/lib/core_docs/core_docs_25/object_types +0 -0
- data/lib/core_docs/core_docs_25/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_26/checksums +501 -0
- data/lib/core_docs/core_docs_26/complete +0 -0
- 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_26/proxy_types +0 -0
- data/lib/core_docs/version.rb +3 -1
- 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: 6eb18ae0d8de046ed9ce32ca53e64d7a7c434e3497511623d7f5cf7919131a06
|
4
|
+
data.tar.gz: bb4461ec5950abc01c9ef08ba17cf7dca73aef42054ca8d6607765adbebd41f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7c3e606591019bf6fa1bd4d68668345ebdcbd54a5e0570398a3b61131e3e5dee2b6073d57dd50950d2cf1de1fa9a3ee23915432a6401b0f6d910d4fe09b54c1
|
7
|
+
data.tar.gz: 8e9a380e1b761ee2e87d4b3c4141de4dee96fc1393ca5d96ae90443a26b42166a550121310d6a2c632a08196bc72b144dafd43fcd5c1e61cfa293688bfb62188
|
data/CHANGELOG.md
CHANGED
data/Rakefile
CHANGED
@@ -120,3 +120,8 @@ desc "Generate the latest Ruby 2.5 docs"
|
|
120
120
|
task "gen25" do
|
121
121
|
generate_docs_for('25', Latest::Ruby.new(Latest::MRI.new('2.5', Latest::MRIRetriever.new)))
|
122
122
|
end
|
123
|
+
|
124
|
+
desc "Generate the latest Ruby 2.6 docs"
|
125
|
+
task "gen26" do
|
126
|
+
generate_docs_for('26', Latest::Ruby.new(Latest::MRI.new('2.6', Latest::MRIRetriever.new)))
|
127
|
+
end
|