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

MICHAEL P
MICHAEL P
5,191 Points

Need Help With Ruby Module Question

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

2 Answers

William Li
PLUS
William Li
Courses Plus Student 26,868 Points

Ok, I was asked to answer this question.

Now, if my Ruby knowledge has been too rusty, you can write it like this

class Shoes
  include Comparable

  attr_accessor :size


  def initialize(size)
    @size = size
  end

  def <=>(other)
    self.size <=> other.size
  end
end

That should do it, next time it'd probably best you post the original challenge link along w/ the question. Happy coding.