I am trying to parse a textual representation of time into a Ruby time object.
Normally in ruby ββI would do it like this:
require 'time' Time.parse('2010-12-15T13:16:45Z')
In RubyMotion, I cannot require libs and Time.parse is not available:
(main)> require 'time' =>
Is there a way to require the ruby-provided time library without having to copy and rewrite all the code to make it compatible with RubyMotion?
source share