klondike (owner)

Revisions

gist: 189531 Download_button fork
public
Public Clone URL: git://gist.github.com/189531.git
Embed All Files: show embed
irbrc methods helper #
1
2
3
4
5
6
7
8
9
# Put it in your .irbrc, then you can see the methods of an object or class, besides the ones Object gives to everyone.
 
def m(obj)
  if obj.is_a? Class
    obj.methods.sort - Object.methods
  else
    obj.methods.sort - Object.new.methods
  end
end