module ExtendObject
Public Instance Methods
grep_method(match)
click to toggle source
Matches your search string against all methods and returns array
# File lib/rujitsu/inspect.rb 21 def grep_method match 22 match = /#{match}/ unless match.is_a? Regexp 23 self.methods.grep(match) 24 end
simple_methods()
click to toggle source
Outputs all methods not inherited from Object
# File lib/rujitsu/inspect.rb 15 def simple_methods 16 self.methods.sort - Object.methods 17 end