Ruby 的 WebDAV 开发包 Net::Dav
- 授权协议: GPLv3
- 开发语言: Ruby
- 操作系统: 跨平台
- 软件首页: https://github.com/devrandom/net_dav
- 软件文档: http://wiki.github.com/devrandom/net_dav
软件介绍
Net::Dav 是一个 Ruby 的 WebDAV 开发包,风格类似 Net::HTTP,示例代码:
Net::DAV.start("https://localhost.localdomain/xyz/") { |dav|
find('.', :recursive => true) do | item |
item.content = item.content.gsub(/silly/i, "funny")
end
end
