I noticed that Rails' String.to_timezone method does not use the current time zone, when no time zone is given in the string.
$ "2013-01-14 14:38".to_datetime
=> Mon, 14 Jan 2013 14:38:00 +0000
$ DateTime.now
=> Mon, 14 Jan 2013 14:39:50 +0100
Is there a way to tell the method to use the current time zone?
Thanks.