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
today
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.
Date.today