diff options
Diffstat (limited to 'templates/default/header/html/setup.rb')
| -rw-r--r-- | templates/default/header/html/setup.rb | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/templates/default/header/html/setup.rb b/templates/default/header/html/setup.rb index 757657d..6e5f8f9 100644 --- a/templates/default/header/html/setup.rb +++ b/templates/default/header/html/setup.rb @@ -1,10 +1,15 @@ def init - puts "header!" - puts object.inspect super sections.push :header - sections.push :functions -rescue => error - puts error + sections.push :function_summary end + + +def function_listing + return @funcs if @funcs + + @funcs = object.functions + @funcs +end + |
