Ruby 1.9: What to Expect

OSCON 2008

instance_methods now an array of symbols


ruby 1.9

irb(main):001:0> {}.methods.sort.last
=> :zip

ruby 1.8.6

irb(main):001:0> {}.methods.sort.last
=> “zip”

Action: Replace instance_methods.include? with method_defined?