A class includes Comparable and defines <=> based on a numeric attribute. Which method does Comparable NOT provide for free?class Temp include Comparable def initialize(d); @d = d; end def <=>(o); @d <=> o.instance_variable_get(:@d); end end