我知道我可以使用 RubyGem Curb 来满足我将文件卷曲到我的计算机的需要。但我无法弄清楚如何实际“触摸”文件。这是我到目前为止所得到的
include 'rubygems'
include 'curb'
curl = Curl::Easy.new('http://wordpress.org/latest.zip')
curl.perform
我想我明白perform
实际上是下载文件。但是之后我如何与文件交互呢?它下载到哪里?
问候, 马蒂亚斯
可以使用 body_str 方法访问该文件。
puts curl.body_str
检查http://rdoc.info/gems/curb/0.7.15/上的文档。
之后perform
,内容在例如curl.body_str
。