From 995923b7f9178c234f8c685f434407eb4f0eeb5c Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 20 Jun 2020 19:21:35 +0900 Subject: [DOC] Mentioned that `Time.parse` method is not validator --- lib/time.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib') diff --git a/lib/time.rb b/lib/time.rb index b534c7825c..625c2c87bb 100644 --- a/lib/time.rb +++ b/lib/time.rb @@ -272,6 +272,11 @@ class Time # Takes a string representation of a Time and attempts to parse it # using a heuristic. # + # This method **does not** function as a validator. If the input + # string does not match valid formats strictly, you may get a + # cryptic result. Should consider to use `Time.strptime` instead + # of this method as possible. + # # require 'time' # # Time.parse("2010-10-31") #=> 2010-10-31 00:00:00 -0500 -- cgit v1.2.3