def my_method
super_result = super
...
(do something with super_result, or simply after super has been called)
...
super_result <== to make sure your method returns the result of super
end
you can just do this: def my_method
super.tap{|result| (do something with/after result) } <== will still return the result of super
end