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 Include and Extend Include

This time, why do I not have to define the fetch method inside the Dog or Cat class?

I'm asking this because we included Enumerable in the exercise before and to be able to use the .each method, we had to define it.

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Frank,

It's because it is defined in the Fetcher Module. So in the Dog/Cat class, we have access to everything in that module, including any defined methods.

Hope that helps.

Keep Coding! :)