mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Fix todo Time.xmlschema used instead of Time.parse
This commit is contained in:
@@ -51,13 +51,12 @@ module ActiveSupport
|
||||
"yaml" => Proc.new { |yaml| yaml.to_yaml }
|
||||
} unless defined?(FORMATTING)
|
||||
|
||||
# TODO: use Time.xmlschema instead of Time.parse;
|
||||
# use regexp instead of Date.parse
|
||||
# TODO use regexp instead of Date.parse
|
||||
unless defined?(PARSING)
|
||||
PARSING = {
|
||||
"symbol" => Proc.new { |symbol| symbol.to_sym },
|
||||
"date" => Proc.new { |date| ::Date.parse(date) },
|
||||
"datetime" => Proc.new { |time| ::Time.parse(time).utc rescue ::DateTime.parse(time).utc },
|
||||
"datetime" => Proc.new { |time| ::Time.xmlschema(time).utc rescue ::DateTime.parse(time).utc },
|
||||
"integer" => Proc.new { |integer| integer.to_i },
|
||||
"float" => Proc.new { |float| float.to_f },
|
||||
"decimal" => Proc.new { |number| BigDecimal(number) },
|
||||
|
||||
Reference in New Issue
Block a user