I'm trying to find all users with birthdays in the coming 2 weeks.
I tried the following:
User.find(:all, :conditions => ["DOB > ? and DOB <= ?", Date.today, 2.weeks.from_now])
which obviously doesn't work because the 'year' in the DOB doesn't equal to this year.
I need to only compare the months and the days.
How can I go about doing this?