PDA

View Full Version : instance_methods


richard
October 20th, 2005, 08:08 PM
class Kantian
def philosophize
puts "People should behave ethically"
end
def rant
puts "nirtzsche was a ninny"
end
end


Kantian.instance_methods

This doesn't seem to return my methods. Nothing is returned. What have I done wrong?

Thanks

steve_d555
October 20th, 2005, 08:49 PM
class Kantian
def philosophize
puts "People should behave ethically"
end
def rant
puts "nirtzsche was a ninny"
end
end


Kantian.instance_methods

This doesn't seem to return my methods. Nothing is returned. What have I done wrong?

Thanks

If you would like to see them then just add

puts Kantian.instance_methods(false)