core_docs 0.9.3 → 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/.gitignore +1 -0
- data/CHANGELOG.md +24 -1
- data/Rakefile +20 -0
- data/core_docs.gemspec +3 -3
- 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 +70 -70
- 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 +93 -92
- 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 +503 -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/core_docs_27/checksums +506 -0
- data/lib/core_docs/core_docs_27/complete +0 -0
- 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_27/proxy_types +0 -0
- data/lib/core_docs/core_docs_30/checksums +558 -0
- data/lib/core_docs/core_docs_30/complete +0 -0
- 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_30/proxy_types +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 +3 -1
- data/lib/core_docs.rb +2 -2
- metadata +30 -9
- data/.travis.yml +0 -13
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/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,29 @@
|
|
1
|
-
Core Docs
|
1
|
+
Core Docs Changelog
|
2
2
|
===================
|
3
3
|
|
4
|
+
### v0.9.7
|
5
|
+
|
6
|
+
* Build 3.1 docs
|
7
|
+
* Fix bug that 3.x docs would not be loaded
|
8
|
+
* Re-build 3.0, 2.7, and 2.6 docs
|
9
|
+
|
10
|
+
### v0.9.6
|
11
|
+
|
12
|
+
* Relax Ruby version requirement to allow Ruby 3.0
|
13
|
+
* Bump yard dependency
|
14
|
+
* Build 3.0 docs
|
15
|
+
* Re-build 2.7, 2.6, and 2.5 docs
|
16
|
+
|
17
|
+
### v0.9.5
|
18
|
+
|
19
|
+
* Build 2.7 docs
|
20
|
+
* Re-build 2.6, 2.5, 2.4, and 2.3 docs
|
21
|
+
|
22
|
+
### v0.9.4
|
23
|
+
|
24
|
+
* Build 2.6 docs
|
25
|
+
* Re-build 2.5, 2.4, 2.3, 2.2, 2.1, and 2.0 docs
|
26
|
+
|
4
27
|
### v0.9.3
|
5
28
|
|
6
29
|
* Build 2.5 docs
|
data/Rakefile
CHANGED
@@ -120,3 +120,23 @@ 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
|
128
|
+
|
129
|
+
desc "Generate the latest Ruby 2.7 docs"
|
130
|
+
task "gen27" do
|
131
|
+
generate_docs_for('27', Latest::Ruby.new(Latest::MRI.new('2.7', Latest::MRIRetriever.new)))
|
132
|
+
end
|
133
|
+
|
134
|
+
desc "Generate the latest Ruby 3.0 docs"
|
135
|
+
task "gen30" do
|
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)))
|
142
|
+
end
|
data/core_docs.gemspec
CHANGED
@@ -5,7 +5,7 @@ Gem::Specification.new do |s|
|
|
5
5
|
s.version = CoreDocs::VERSION
|
6
6
|
|
7
7
|
s.authors = ["John Mair (banisterfiend)", "Jan Lelis (non-pry version)"]
|
8
|
-
s.email = ["jrmair@gmail.com", "
|
8
|
+
s.email = ["jrmair@gmail.com", "hi@ruby.consulting"]
|
9
9
|
s.summary = 'Provides YARD and extended documentation support'
|
10
10
|
s.description = <<DESCR
|
11
11
|
This gem enables you to be able to display the source code and the docs
|
@@ -17,8 +17,8 @@ DESCR
|
|
17
17
|
s.require_paths = ["lib"]
|
18
18
|
s.files = `git ls-files`.split("\n")
|
19
19
|
|
20
|
-
s.required_ruby_version = "
|
21
|
-
s.add_dependency 'yard', "~> 0.
|
20
|
+
s.required_ruby_version = ">= 2.0", "< 4.0"
|
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"
|
24
24
|
end
|