Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I convert a Rails DateTime object to an XML string?

I have a DateTime object in Rails which outputs like this when called:

ruby-1.8.7-p302 > Time.now
 => Wed Nov 10 16:46:51 -0800 2010 

How do I convert the DateObject to return an XML datetime type string like this:

ruby-1.8.7-p302 > Time.now.convert_to_xml
 => 2010-11-10T16:46:51-08:00
like image 454
Chanpory Avatar asked Nov 11 '10 00:11

Chanpory


1 Answers

Time to XML format:

Time.now.xmlschema # implemented by Rails, not stock ruby
Time.now.strftime '%Y-%m-%dT%H:%M:%S%z'

http://corelib.rubyonrails.org/classes/Time.html#M000281

To parse (Ruby 1.9 and beyond):

t = Time.now.xmlschema(str)

http://ruby-doc.org/core-1.9/classes/Time.html#M000329

like image 118
Fábio Batista Avatar answered Sep 28 '22 03:09

Fábio Batista