My date methods aren't working correctly on Heroku. I created a user that goes by the (GMT-05:00) Eastern Time (US & Canada) and is suppose to see products added based on the date attribute it has. So it suppose to say Added 1 Product Today but it's as if it's the methods themselves are recording by the day before. So today is actually yesterday and yesterday is actually the day after yesterday.
Here are my methods:
def self.today
where(:date => Date.today)
end
def self.yesterday
where(:date => Date.yesterday)
end
def self.this_week
where(:date => Date.today.beginning_of_week..Date.today.end_of_week)
end
def self.last_week
where(:date => 1.week.ago.beginning_of_week..1.week.ago.end_of_week)
end
def self.this_month
where(:date => Date.today.beginning_of_month..Date.today.end_of_month)
end
def self.last_month
where(:date => 1.month.ago.beginning_of_month..1.month.ago.end_of_month).order('date desc')
end
So I guess it's always -1 day for every method on Heroku but not in development. Heroku's Time zone and Time are:
Loading production environment (Rails 3.2.8)
irb(main):001:0> Time.now
Time.now
=> 2012-09-21 02:37:26 +0000
irb(main):002:0> Time.zone
Time.zone
=> (GMT+00:00) UTC
This is wrong for me since it's 2012-09-20 in the US East.
I want to have the methods work for every Timezone, not just Eastern Timezone so what should I do about this? How can I get a user to see the products they've added based on their Timezone?
Thank you.