yard_klippstein_template 0.0.25 → 0.0.26

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
@@ -4,11 +4,12 @@ Manifest.txt
4
4
  Rakefile.rb
5
5
  README.rdoc
6
6
  version.rb
7
- templates/default/fulldoc/html/setup.rb
8
7
  templates/default/fulldoc/html/css/klippstein.css
9
8
  templates/default/fulldoc/html/js/klippstein.js
10
- templates/default/layout/html/setup.rb
9
+ templates/default/fulldoc/html/full_list_method.erb
10
+ templates/default/fulldoc/html/setup.rb
11
11
  templates/default/layout/html/footer.erb
12
+ templates/default/layout/html/setup.rb
12
13
  templates/default/module/html/item_summary.erb
13
14
  templates/default/module/setup.rb
14
15
  lib/yard_klippstein_template.rb
@@ -0,0 +1,14 @@
1
+ <% n = 1 %>
2
+ <% @items.each do |item| %>
3
+ <% next if item.namespace.name.to_s == 'NilClass' %>
4
+ <% next if ( defined?(item.namespace.superclass) && item.namespace.superclass.name.to_s == 'UnitTest') %>
5
+ <li class="r<%= n %> <%= item.has_tag?(:deprecated) ? 'deprecated' : '' %>">
6
+ <%= linkify item, h(item.name(true)) %>
7
+ <% if item.namespace && !item.namespace.root? %>
8
+ <small><%= item.namespace %></small>
9
+ <% else %>
10
+ <small>Top Level Namespace</small>
11
+ <% end %>
12
+ </li>
13
+ <% n = n == 2 ? 1 : 2 %>
14
+ <% end %>
data/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  module YardKlippsteinTemplate
3
3
 
4
- VERSION = '0.0.25'
4
+ VERSION = '0.0.26'
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.25
4
+ version: 0.0.26
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-31 00:00:00.000000000 Z
12
+ date: 2012-11-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: yard
@@ -93,11 +93,12 @@ files:
93
93
  - Rakefile.rb
94
94
  - README.rdoc
95
95
  - version.rb
96
- - templates/default/fulldoc/html/setup.rb
97
96
  - templates/default/fulldoc/html/css/klippstein.css
98
97
  - templates/default/fulldoc/html/js/klippstein.js
99
- - templates/default/layout/html/setup.rb
98
+ - templates/default/fulldoc/html/full_list_method.erb
99
+ - templates/default/fulldoc/html/setup.rb
100
100
  - templates/default/layout/html/footer.erb
101
+ - templates/default/layout/html/setup.rb
101
102
  - templates/default/module/html/item_summary.erb
102
103
  - templates/default/module/setup.rb
103
104
  - lib/yard_klippstein_template.rb