sdoc 2.3.2 → 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: 7e1e62c13ff0c78005bc5325e9d984bf418b1f565146f91612010e29d4383361
4
- data.tar.gz: e8eac1d34aaa80065ef4f8847c97f8a98d25be9356fe56a6284e2a7bfe9a1802
3
+ metadata.gz: fa274f575c6bc9da8ebed7340968bdb489ec3e26cf551a298c9f3ca292bb7ccd
4
+ data.tar.gz: 66fe4cd7f903a91b32e292d7f363db4617a923b529ba385d91b75104bd77dbad
5
5
  SHA512:
6
- metadata.gz: a1bbbd123bcc7d34a56f6102f825168ac1315472fe0a779d3731c30de0d45645398ab504de0e6cd6c74b277676ab68173c2a1f94a8deeddc60bcbb78ead1f8a1
7
- data.tar.gz: 87c0fa01e9068653b9f030a43ea4126d0f1de564f4efc138350660b0d51bdc8d0bab71cd6fad881f2b65ae8c134f66e920debd2204d03783360c8d8840cd320a
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,18 @@
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
+
11
+ 2.4.0
12
+ =====
13
+
14
+ * #187 Allow setting CSS based version badge [@p8](https://github.com/p8)
15
+
4
16
  2.3.2
5
17
  =====
6
18
 
@@ -45,6 +45,9 @@
45
45
  <li><a href="<%= "#{rel_prefix}/#{h file.path}" %>"><%= h file.absolute_name %></a></li>
46
46
  <% end %>
47
47
  </ul>
48
+ <% if ENV['HORO_BADGE_VERSION'] %>
49
+ <div id="version-badge"><%= ENV['HORO_BADGE_VERSION'] %></div>
50
+ <% end %>
48
51
  </div>
49
52
 
50
53
  <main id="bodyContent">
@@ -32,6 +32,9 @@
32
32
  </li>
33
33
  <li>Last modified: <%= file.file_stat.mtime %></li>
34
34
  </ul>
35
+ <% if ENV['HORO_BADGE_VERSION'] %>
36
+ <div id="version-badge"><%= ENV['HORO_BADGE_VERSION'] %></div>
37
+ <% end %>
35
38
  </div>
36
39
 
37
40
  <main id="bodyContent">
@@ -24,6 +24,9 @@
24
24
  <li><%= h index.relative_name %></li>
25
25
  <li>Last modified: <%= index.last_modified %></li>
26
26
  </ul>
27
+ <% if ENV['HORO_BADGE_VERSION'] %>
28
+ <div id="version-badge"><%= ENV['HORO_BADGE_VERSION'] %></div>
29
+ <% end %>
27
30
  </div>
28
31
 
29
32
  <main id="bodyContent">
@@ -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
  }
@@ -403,3 +404,22 @@ p code {
403
404
  background: #fff;
404
405
  font-size: 2rem;
405
406
  }
407
+
408
+ #version-badge {
409
+ position: fixed;
410
+ right: 0;
411
+ top: 0;
412
+ z-index: 100;
413
+ color: white;
414
+ transform: rotate(45deg) translate(27.5%, -40%);
415
+ min-width: 200px;
416
+ font-family: Helvetica, Arial, sans-serif;
417
+ font-size: 30px;
418
+ font-weight: bold;
419
+ font-style: italic;
420
+ line-height: 1.5;
421
+ text-shadow: 2px 2px 4px #5400007d;
422
+ text-align: center;
423
+ box-shadow: 0px 2px 2px 1px #1209096e;
424
+ background: radial-gradient(circle, rgb(255, 10, 0) 0%, rgb(200, 0, 0) 90%);
425
+ }
@@ -12,8 +12,7 @@
12
12
  top: 0;
13
13
  background: #000;
14
14
  color: #fff;
15
- padding-right: 10px;
16
- text-align: right;
15
+ padding: 0 10px;
17
16
  line-height: 40px;
18
17
  cursor: pointer;
19
18
  z-index: 2;
@@ -84,7 +83,7 @@
84
83
  width: 300px;
85
84
  height: 100%;
86
85
  background: #FFF;
87
- z-index: 10;
86
+ z-index: 200;
88
87
  font-family: "Helvetica Neue", "Arial", sans-serif;
89
88
  overflow-x: hidden;
90
89
  border-right: 1px #ccc solid;
@@ -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.3.2'
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.3.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-04-22 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