core_docs 0.9.10 → 0.9.12
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 +11 -1
- data/Rakefile +10 -0
- data/core_docs.gemspec +1 -1
- data/lib/core_docs/core_docs_30/checksums +490 -490
- 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 +461 -461
- 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_32/checksums +307 -307
- data/lib/core_docs/core_docs_32/object_types +0 -0
- data/lib/core_docs/core_docs_32/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_33/checksums +320 -320
- data/lib/core_docs/core_docs_33/object_types +0 -0
- data/lib/core_docs/core_docs_33/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_34/checksums +357 -0
- data/lib/core_docs/core_docs_34/complete +0 -0
- data/lib/core_docs/core_docs_34/object_types +0 -0
- data/lib/core_docs/core_docs_34/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_34/proxy_types +0 -0
- data/lib/core_docs/core_docs_40/checksums +344 -0
- data/lib/core_docs/core_docs_40/complete +0 -0
- data/lib/core_docs/core_docs_40/object_types +0 -0
- data/lib/core_docs/core_docs_40/objects/root.dat +0 -0
- data/lib/core_docs/core_docs_40/proxy_types +0 -0
- data/lib/core_docs/version.rb +1 -1
- metadata +16 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 032d712aa33602e345fd86a611d6861d9a43a6f28d2f5db651e158036529a045
|
|
4
|
+
data.tar.gz: 521e63097c256d23ed8263bc3e5869798da65fedf7984c3413ab1e3018e06e8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19c87f8a19dbe2c89b1f923a3a98ae4a5bc683f3220be6a95b4bb2e58a72c0cd3383342279034e6238aeb3626cf5eaf5f916359e096acdb92a917b07cdfa1b32
|
|
7
|
+
data.tar.gz: 5f0c357d6103e59522ec597314a2f75a9b6434ba4b701ff8bc51ba3cc2d806c7526dd29e768b4205b24f5432184189443b57ab55a846c0ca12729c5bebd9ae07
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
Core Docs Changelog
|
|
2
2
|
===================
|
|
3
3
|
|
|
4
|
-
### v0.9.
|
|
4
|
+
### v0.9.12
|
|
5
|
+
|
|
6
|
+
* Add docs for Ruby 3.4 and 4.0
|
|
7
|
+
* Rebuild docs for other Ruby 3.x
|
|
8
|
+
* Allow Ruby 4.0
|
|
9
|
+
|
|
10
|
+
### v0.9.11
|
|
11
|
+
|
|
12
|
+
* Re-build 3.3 docs with Ruby 3.3.1
|
|
13
|
+
|
|
14
|
+
### v0.9.10
|
|
5
15
|
|
|
6
16
|
* Build 3.3 docs
|
|
7
17
|
* Re-build 3.2, 3.1, and 3.0 docs
|
data/Rakefile
CHANGED
|
@@ -149,4 +149,14 @@ end
|
|
|
149
149
|
desc "Generate the latest Ruby 3.3 docs"
|
|
150
150
|
task "gen33" do
|
|
151
151
|
generate_docs_for('33', Latest::Ruby.new(Latest::MRI.new('3.3', Latest::MRIRetriever.new)))
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
desc "Generate the latest Ruby 3.4 docs"
|
|
155
|
+
task "gen34" do
|
|
156
|
+
generate_docs_for('34', Latest::Ruby.new(Latest::MRI.new('3.4', Latest::MRIRetriever.new)))
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
desc "Generate the latest Ruby 4.0 docs"
|
|
160
|
+
task "gen40" do
|
|
161
|
+
generate_docs_for('40', Latest::Ruby.new(Latest::MRI.new('4.0', Latest::MRIRetriever.new)))
|
|
152
162
|
end
|
data/core_docs.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ DESCR
|
|
|
17
17
|
s.require_paths = ["lib"]
|
|
18
18
|
s.files = `git ls-files`.split("\n")
|
|
19
19
|
|
|
20
|
-
s.required_ruby_version = ">= 2.0"
|
|
20
|
+
s.required_ruby_version = ">= 2.0"
|
|
21
21
|
s.add_dependency 'yard', "~> 0.9.11"
|
|
22
22
|
s.add_development_dependency 'latest_ruby', "~> 0.0"
|
|
23
23
|
s.add_development_dependency 'bacon', "~> 1.1"
|