mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-05-10 05:48:48 +08:00
12 lines
208 B
Ruby
12 lines
208 B
Ruby
# encoding: utf-8
|
|
|
|
def init
|
|
super
|
|
sections.last.pop
|
|
end
|
|
|
|
def format_object_title(object)
|
|
title = "Method: #{object.name(true)}"
|
|
title += " (#{object.namespace})" if !object.namespace.root?
|
|
title
|
|
end |