I\'m seeing something very odd.
<%= (Date.today).strftime(\"%A, %B %d, %Y\") %>
is resulting in Wednesday, Octobe
Rails-Date
has provided current
method to compliment today
method of Ruby-Date
. So now you can use:
Date.current # Rails equivalent of Ruby's - Date.today
Date.tomorrow
for all dates which should be respecting Rails timezone and Ruby-Date.today
keeps being what it is.
The method tomorrow isn't in Ruby - only in Rails. Maybe your Ruby and your Rails are set for different timezones. What do you get from Date.current, which is basically today in rails?