mirror of
https://github.com/danog/sass-site.git
synced 2024-11-27 04:24:50 +01:00
11 lines
219 B
Ruby
11 lines
219 B
Ruby
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
|