That causes Rails 4.0/Ruby 2.0 to eat its self when dealing with forms that have dates/times. I'm not calling Date or Time directly in this case. I'm just letting Rails populate forms and then parse the params on submission to update a model. It is outputting the correct format, but it can't seem to parse what it is outputting. This wasn't a problem with Rails 2.3/Ruby 1.8.7.
A simple way to manifest the problem is to do "Time.now.to_s.to_time" or "Date.today.to_s.to_date". This works on Rails 2.3/Ruby 1.8.7, but does not on Rails 4.0/Ruby 2.0 with the above initializers.
It is hard to believe that they removed such basic functionality? Tamara suggests this might be a Ruby bug(?).
> o Time.parse and Date.parse interprets slashed numerical dates·
> as "dd/mm/yyyy".
>
Well, back to basics, my question is simple:
How do I tell Rails to use a custom date/time format without it blowing up?
I put this in an initializer:
Date::DATE_FORMATS.merge!(:default => '%m/%d/%Y')
See my previous comment; that format IS NOT VALID in Ruby 1.9.x and
above. Your issue has nothing to do with Rails.
A simple way to manifest the problem is to do "Time.now.to_s.to_time" or
"Date.today.to_s.to_date". This works on Rails 2.3/Ruby 1.8.7, but does
not on Rails 4.0/Ruby 2.0 with the above initializers.
It works fine with VALID formats. Change your initializer to '%d/%m/%Y'
and try `Date.today.to_s.to_date` -- no problem.
It is hard to believe that they removed such basic functionality? Tamara
The documentation, however, points to the libc functions, strftime(3) and strptime(3), which state quite plainly that these formats are reflexive. Hardly seems sporting, does it? Without including a format field, it's probably quite reasonable to assume the parse methods will interpret in that dd/mm/yyyy order, BUT, *with* a format field?? They should not ignore the format field in that case. *That* is the bug.
It just seems that this was functionality that seemed to have been broken. It’s not a ‘valid’ vs. invalid argument (where I live, m/d/y is valid and d/m/y is not!) I should be able to define 1/13/2 as being Feb 1st, 2013 if I want to be crazy about it. String parsing isn’t hard, it just seems to be eluding me as how to hint Rails 4/Ruby 2 on how to do it the way I want when it worked in the past.
As Tamara suggests, it appears the format string is being dropped by the time it makes it to the parsing function(?). d/m/y is fine as a default, but saying to change my initializer to match the already default is like removing it all together and doesn’t solve my localization problem.