yard-aggredator 1.1.1 → 1.1.2
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/LICENSE +1 -1
- data/lib/yard/aggredator/version.rb +1 -1
- data/templates/default/tags/html/example.erb +16 -0
- data/yards-aggredator.gemspec +1 -0
- metadata +7 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dfe1db4483e76ddaf3fbca7fef0839f09d8eb957b4f2924e8db45c38ad991bad
|
|
4
|
+
data.tar.gz: b479b33d87125e2329af0ae6b659076865e6dfb46644220953bf081916c25501
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd2fee4680a0f242a068397dc3b80be0127e493c1ddf12bb01775623dfc87af49a0e1efdc6b3b800495d32fda2b355a68db410fcbbf565cec8c390a416d714e8
|
|
7
|
+
data.tar.gz: 28c6e1d26ebbc434d5f5db2bc3517d97d2b9941c424e3c35a1105b064d0a6fce3feaaa75bfb1492504bb898c774a444dfae338d2a53db34cb43557348a2e0480
|
data/LICENSE
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<% if object.has_tag?(:example) %>
|
|
2
|
+
<div class="examples docstring">
|
|
3
|
+
<h4 class="tag_title">Examples:</h4>
|
|
4
|
+
<% object.tags(:example).each do |tag| %>
|
|
5
|
+
<% unless tag.name.empty? %>
|
|
6
|
+
<h5 class="example_title"><%= htmlify_line(tag.name) %></h5>
|
|
7
|
+
<% end %>
|
|
8
|
+
<% if tag.name.to_s.gsub(/^\[(\s*\w+\s*)\]/, '') %>
|
|
9
|
+
<% lang = $1.to_s %>
|
|
10
|
+
<%= parse_codeblocks("<pre class=\"#{lang} example\"><code class=\"#{lang}\">#{tag.text}</code></pre>") %>
|
|
11
|
+
<% else %>
|
|
12
|
+
<%= parse_codeblocks("<pre class=\"ruby example\"><code class=\"ruby\">#{tag.text}</code></pre>") %>
|
|
13
|
+
<% end %>
|
|
14
|
+
<% end %>
|
|
15
|
+
</div>
|
|
16
|
+
<% end %>
|
data/yards-aggredator.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yard-aggredator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samoilenko Yuri
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-05-27 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: rouge
|
|
@@ -85,11 +86,13 @@ files:
|
|
|
85
86
|
- templates/default/fulldoc/html/js/mermaid.min.js
|
|
86
87
|
- templates/default/layout/html/customjs.erb
|
|
87
88
|
- templates/default/layout/html/setup.rb
|
|
89
|
+
- templates/default/tags/html/example.erb
|
|
88
90
|
- yards-aggredator.gemspec
|
|
89
91
|
homepage: https://br.rnds.pro/ruby/yard-aggredator
|
|
90
92
|
licenses:
|
|
91
93
|
- MIT
|
|
92
94
|
metadata: {}
|
|
95
|
+
post_install_message:
|
|
93
96
|
rdoc_options: []
|
|
94
97
|
require_paths:
|
|
95
98
|
- lib
|
|
@@ -104,7 +107,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
107
|
- !ruby/object:Gem::Version
|
|
105
108
|
version: '0'
|
|
106
109
|
requirements: []
|
|
107
|
-
rubygems_version: 3.
|
|
110
|
+
rubygems_version: 3.4.10
|
|
111
|
+
signing_key:
|
|
108
112
|
specification_version: 4
|
|
109
113
|
summary: YARD plugin with useful fixes and tools
|
|
110
114
|
test_files: []
|