Issue #13036 has been updated by Martin Drst. Status changed from Open to Rejected Shyouhei Urabe wrote: > So is it a dates_international.rb's problem? Yes. But that file has other problems, among else that it only supports four additional languages (French, German, Italian, and Spanish). > Then sorry but the ruby's core do not ship that library. Yes indeed. I searched the whole Ruby source for a distinctive month name such as "noviembre", but nothing was found. > You might have obtained a copy of it from somewhere else. Do you remember where? Probably from https://gist.github.com/jackrg/2927162. > Or, you might want to contact @jackrg directly. Let him know this issue and I hope he can fix it. Already done at the link above (the "let him know", not the "fix"). ---------------------------------------- Bug #13036: Date.parse mishandling spanish months "Abril y Agosto" https://bugs.ruby-lang.org/issues/13036#change-62346 * Author: Gonzalo Reutter * Status: Rejected * Priority: Normal * Assignee: * Target version: * ruby -v: 2.3.0 * Backport: 2.1: UNKNOWN, 2.2: UNKNOWN, 2.3: UNKNOWN ---------------------------------------- ### Steps to reproduce $ irb 2.3.0 :003 > Date.parse("01-Agosto-2016") => 01 Dec 2016 2.3.0 :004 > Date.parse("01-Abril-2016") => 01 Dec 2016 ### Expected behavior 2.3.0 :003 > Date.parse("01-Agosto-2016") => 01 Aug 2016 2.3.0 :004 > Date.parse("01-Abril-2016") => 01 Apr 2016 ### Actual behavior "Agosto" is parsed to December "Abril" is parsed to December. ### System configuration Ruby 2.3.0 Would much like to fix this myself, should be straight forward, but I'm a hobby developer and have never contributed to a project. -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request / ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>