Convenient shortcut methods.
Print object methods, sorted by name. (excluding methods that exist in the class Object) .
[Source]
# File lib/wirble.rb, line 461 461: def po(o) 462: o.methods.sort - Object.methods 463: end
Print object constants, sorted by name.
# File lib/wirble.rb, line 468 468: def poc(o) 469: o.constants.sort 470: end
[Validate]