我尝试将时间的文本表示解析为 ruby Time 对象。
通常在红宝石中我会这样做:
require 'time'
Time.parse('2010-12-15T13:16:45Z')
# => 2010-12-15 13:16:45 UTC
在 RubyMotion 中,我无法要求库并且 Time.parse 不可用:
(main)> require 'time'
=> #<RuntimeError: #require is not supported in RubyMotion>
(main)>
(main)> Time.parse
=> #<NoMethodError: undefined method `parse' for Time:Class>
有没有办法要求 ruby 提供的时间库,而不必复制和重写整个代码以使其与 RubyMotion 兼容?