yard-nowpunk 0.2.12 → 0.2.13
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/templates/default/method_details/html/method_signature.erb +27 -0
- data/yard-nowpunk.gemspec +2 -1
- metadata +3 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.13
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<h3 class="signature <%= 'first' if @index == 0 %>" id="<%= anchor_for(object) %>">
|
2
|
+
<% if object.tags(:overload).size == 1 %>
|
3
|
+
<%= signature(object.tag(:overload), false) %>
|
4
|
+
<% elsif object.tags(:overload).size > 1 %>
|
5
|
+
<% object.tags(:overload).each do |overload| %>
|
6
|
+
<span class="overload"><%= signature(overload, false) %></span>
|
7
|
+
<% end %>
|
8
|
+
<% else %>
|
9
|
+
<%= signature(object, false) %>
|
10
|
+
<% end %>
|
11
|
+
|
12
|
+
<% if object.aliases.size > 0 %>
|
13
|
+
<span class="aliases">Also known as:
|
14
|
+
<span class="names"><%= object.aliases.map {|o|
|
15
|
+
"<span id='#{anchor_for(o)}'>" + h(o.name.to_s) + "</span>" }.join(", ") %></span>
|
16
|
+
</span>
|
17
|
+
<% end %>
|
18
|
+
|
19
|
+
<% if owner != object.namespace %>
|
20
|
+
<span class="not_defined_here">
|
21
|
+
Originally defined in <%= object.namespace.type %>
|
22
|
+
<%= linkify object, owner.relative_path(object.namespace) %>
|
23
|
+
</span>
|
24
|
+
<% end %>
|
25
|
+
|
26
|
+
<a href="<%= YARD::Nowpunk.github_master %><%= object.file %>#L<%= object.line %>"></a>
|
27
|
+
</h3>
|
data/yard-nowpunk.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "yard-nowpunk"
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.13"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Farley Knight"]
|
@@ -26,6 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
"VERSION",
|
27
27
|
"lib/yard-nowpunk.rb",
|
28
28
|
"templates/default/layout/html/footer.erb",
|
29
|
+
"templates/default/method_details/html/method_signature.erb",
|
29
30
|
"templates/default/module/html/defines.erb",
|
30
31
|
"test/helper.rb",
|
31
32
|
"test/test_yard-nowpunk.rb",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yard-nowpunk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.13
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -76,6 +76,7 @@ files:
|
|
76
76
|
- VERSION
|
77
77
|
- lib/yard-nowpunk.rb
|
78
78
|
- templates/default/layout/html/footer.erb
|
79
|
+
- templates/default/method_details/html/method_signature.erb
|
79
80
|
- templates/default/module/html/defines.erb
|
80
81
|
- test/helper.rb
|
81
82
|
- test/test_yard-nowpunk.rb
|
@@ -95,7 +96,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
95
96
|
version: '0'
|
96
97
|
segments:
|
97
98
|
- 0
|
98
|
-
hash: -
|
99
|
+
hash: -3048636974595567702
|
99
100
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
101
|
none: false
|
101
102
|
requirements:
|