sdoc 2.4.0 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d7faa59345da609a45912c1e899fe96b8b6940cd87bd21a8a95910ec4d29d41
4
- data.tar.gz: 50ba9e8545535e895266ceeacc0c4514ff99e74ffc01b7e0aa0b0884138bf9d4
3
+ metadata.gz: fa274f575c6bc9da8ebed7340968bdb489ec3e26cf551a298c9f3ca292bb7ccd
4
+ data.tar.gz: 66fe4cd7f903a91b32e292d7f363db4617a923b529ba385d91b75104bd77dbad
5
5
  SHA512:
6
- metadata.gz: 455bacbd6d1eba074efd3838f89ac146782957ca8455bedcd2f8484329ae161d88fb3bdd706effc89bf41f5ff00eeb2a1ed004a67e6886b14765a2ab154bb87e
7
- data.tar.gz: 55d089df446d8e51b70ad53c83ad4b2b3d5d6ed642beb02c1ecc18150bfdda1673fc9643e2a8a215c981ffdbe80972504d177887e8507e341c954c99c4119763
6
+ metadata.gz: 3a5fde263c6c067c91acd335d4b928b3c9d080f6e7f745067f7119b9f89b99963dfdc460507607b9a15b4be890b2818297e59d63c46974a0268012f10759686a
7
+ data.tar.gz: a7e62e3b13be1f3f43efd7b21aac416770500f57585b919035ed9a7b5945baaa555c51124133b3fd2e439851e16fef8420b03b5b3bbf0b429bbe0a0a14c49777
@@ -9,7 +9,7 @@ on:
9
9
 
10
10
  jobs:
11
11
  test:
12
- runs-on: ubuntu-20.04
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
 
@@ -72,7 +72,8 @@ pre .regexp {
72
72
  color: #009926
73
73
  }
74
74
 
75
- pre .class {
75
+ pre .class,
76
+ pre .constant {
76
77
  color: #458;
77
78
  font-weight: bold
78
79
  }
@@ -262,8 +262,9 @@ tt {
262
262
  }
263
263
 
264
264
  .description pre {
265
- padding: 0.5em;
265
+ padding: 1em 1.2em;
266
266
  background: #EEEEEE;
267
+ border-radius: 10px;
267
268
  font-size: 15px;
268
269
  overflow-x: scroll;
269
270
  }
@@ -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.include?("::")
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
@@ -1,3 +1,3 @@
1
1
  module SDoc
2
- VERSION = '2.4.0'
2
+ VERSION = '2.5.0'
3
3
  end
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.0
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-05-10 00:00:00.000000000 Z
14
+ date: 2022-12-19 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rdoc