summaryrefslogtreecommitdiffhomepage
path: root/templates/default/header/html/setup.rb
blob: 6e5f8f91708452d17105659b048cb16a0d93e6c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
def init
  super

  sections.push :header
  sections.push :function_summary
end


def function_listing
  return @funcs if @funcs

  @funcs = object.functions
  @funcs
end