yard_klippstein_template 0.0.29 → 0.0.30

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.
data/Manifest.txt CHANGED
@@ -12,6 +12,7 @@ templates/default/fulldoc/html/setup.rb
12
12
  templates/default/layout/html/footer.erb
13
13
  templates/default/layout/html/setup.rb
14
14
  templates/default/module/html/box_info.erb
15
+ templates/default/module/html/children.erb
15
16
  templates/default/module/html/item_summary.erb
16
17
  templates/default/module/setup.rb
17
18
  lib/yard_klippstein_template.rb
@@ -0,0 +1,14 @@
1
+ <div class="box-additions">
2
+ <dl class="box">
3
+ <div class="row">
4
+ <dt class="r1 last">Defined Under Namespace</dt>
5
+ <dd class="r1 last">
6
+ <% @inner.each do |name, list| %>
7
+ <% if list.size > 0 %>
8
+ <strong class="<%= name %>"><%= name.to_s.capitalize %>:</strong> <%= list.map {|child| linkify(child, child.name) }.join(", ") %>
9
+ <% end %>
10
+ <% end %>
11
+ </dd>
12
+ </div>
13
+ </dl>
14
+ </div>
data/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  module YardKlippsteinTemplate
3
3
 
4
- VERSION = '0.0.29'
4
+ VERSION = '0.0.30'
5
5
 
6
6
  end
7
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yard_klippstein_template
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.29
4
+ version: 0.0.30
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -101,6 +101,7 @@ files:
101
101
  - templates/default/layout/html/footer.erb
102
102
  - templates/default/layout/html/setup.rb
103
103
  - templates/default/module/html/box_info.erb
104
+ - templates/default/module/html/children.erb
104
105
  - templates/default/module/html/item_summary.erb
105
106
  - templates/default/module/setup.rb
106
107
  - lib/yard_klippstein_template.rb