Let's say that I'm retrieving the name of the sport by calling the following chain of associations:
pick.event.league.sport.name
How can I use the delegate method so that I can just call *pick.event_league_sport_name* like so? Obviously, I can create a method in the pick model:
def event_league_sport_name
return self.event.league.sport.name
end
But I want to use the delegate method!!!