Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Ruby Modules Ruby Core Modules Comparable

MICHAEL P
MICHAEL P
5,191 Points

I don't know how to do Ruby challenge. Please help!

Hi, I don't know how to do the following Ruby challenge! Please help!

The question is: Define the spaceship (<=>) operator as a method in the Shoes class. The operator should compare to the other shoe size.

This is the code :

class Shoes include Comparable

attr_accessor :size

def initialize(size) @size = size end end

1 Answer

Vlad Filiucov
Vlad Filiucov
10,665 Points
class Shoes
  include Comparable
  attr_accessor :size

  def <=>(other_person)
    size <=> other_person.size
  end

  def initialize(size)
    @size = size
  end
end