Files
2014-03-05 21:35:20 +09:00

13 lines
238 B
Ruby

# encoding: utf-8
def init
sections :header, [:method_signature, T('docstring'), :source]
end
def source
return if owner != object.namespace
return if Tags::OverloadTag === object
return if object.source.nil?
erb(:source)
end