sdoc 2.4.0 → 2.5.0
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fa274f575c6bc9da8ebed7340968bdb489ec3e26cf551a298c9f3ca292bb7ccd
|
|
4
|
+
data.tar.gz: 66fe4cd7f903a91b32e292d7f363db4617a923b529ba385d91b75104bd77dbad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a5fde263c6c067c91acd335d4b928b3c9d080f6e7f745067f7119b9f89b99963dfdc460507607b9a15b4be890b2818297e59d63c46974a0268012f10759686a
|
|
7
|
+
data.tar.gz: a7e62e3b13be1f3f43efd7b21aac416770500f57585b919035ed9a7b5945baaa555c51124133b3fd2e439851e16fef8420b03b5b3bbf0b429bbe0a0a14c49777
|
data/.github/workflows/test.yml
CHANGED
|
@@ -9,7 +9,7 @@ on:
|
|
|
9
9
|
|
|
10
10
|
jobs:
|
|
11
11
|
test:
|
|
12
|
-
runs-on: ubuntu-
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
13
|
strategy:
|
|
14
14
|
matrix:
|
|
15
15
|
ruby:
|
|
@@ -32,6 +32,7 @@ jobs:
|
|
|
32
32
|
uses: ruby/setup-ruby@v1
|
|
33
33
|
with:
|
|
34
34
|
ruby-version: ${{ matrix.ruby }}
|
|
35
|
+
bundler: latest
|
|
35
36
|
bundler-cache: true
|
|
36
37
|
cache-version: 2
|
|
37
38
|
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
Master
|
|
2
2
|
======
|
|
3
3
|
|
|
4
|
+
2.5.0
|
|
5
|
+
=====
|
|
6
|
+
|
|
7
|
+
* #192 Add padding and rounded borders to code examples [@p8](https://github.com/p8)
|
|
8
|
+
* #191 Add css class for constant [@p8](https://github.com/p8)
|
|
9
|
+
* #189 `index_path` should handle a nil `main_page` [@ghiculescu](https://github.com/ghiculescu)
|
|
10
|
+
|
|
4
11
|
2.4.0
|
|
5
12
|
=====
|
|
6
13
|
|
data/lib/sdoc/generator.rb
CHANGED
|
@@ -194,7 +194,7 @@ class RDoc::Generator::SDoc
|
|
|
194
194
|
### Determines index path based on @options.main_page (or lack thereof)
|
|
195
195
|
def index_path
|
|
196
196
|
# Transform class name to file path
|
|
197
|
-
if @options.main_page
|
|
197
|
+
if @options.main_page&.include?("::")
|
|
198
198
|
slashed = @options.main_page.sub(/^::/, "").gsub("::", "/")
|
|
199
199
|
"%s/%s.html" % [ class_dir, slashed ]
|
|
200
200
|
else
|
data/lib/sdoc/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sdoc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vladimir Kolesnikov
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2022-
|
|
14
|
+
date: 2022-12-19 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: rdoc
|