I want to change Fixnum to include the a "weekend_days" method:
class Fixnum
def weekend_days
//get correct days
end
end
I want this available in my controllers and models? Obviously, I also need it to work in my tests.
Where is the "rails" appropriate place to put this?