Displaying 1 result from an estimated 1 matches for "great_white_north".
2007 Jun 18
2
extending Array class with a method
Hi,
Let''s say I have an ActiveRecord::Base class and I want to be able to
call a method on an Array of these items. For instance, perhaps
there''s a class called Country and another called business, and I''d
like to be able to do something like
great_white_north = Country.find_by_name(''Canada'')
canuck_enterprises = great_white_north.businesses
countries = Country.find_by_name([''Canada'',''UK'',''Australia'')
we_love_the_queen_enterprises = countries.businesses
So I need to somehow extend...