与 merb 一起使用的 Ruby Atom 生成器
我想在我的 merb 应用程序中提供 feed。 阅读维基百科后, RSSvsAtom< /a> 看到 StackOverflow 使用它,我想我会使用 Atom。 我应该使用什么库? 我发现 rAtom 看起来相当不错。 有更好的选择吗? 或者 merb 有内置的东西可以帮助我吗?
更新:也许我应该以纯 html 格式发布新闻并使用 FeedBurner?
I want to provide feed in my merb application. After reading wikipedia, RSSvsAtom and seeing that StackOverflow uses it, I think I will use Atom. What library should I use? I have found rAtom that looks quite good. Are there better alternatives? Or does merb has anything built in to help me?
UPDATE: maybe I should just do the news in plain html and use FeedBurner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然不是特定于 Merb,但您可以考虑使用 FeedTools - 这是一个 Ruby Gem。
你会做类似的事情:
无论如何 - 请在 http://sporkmonger.com/projects/feedtools
注意:这是为了解析 ATOM feed,因为我不清楚您是否想要提供 ATOM feed 或解析其他 feed。
While not Merb specific, you might consider using FeedTools - which is a Ruby Gem.
You'd do something like:
Anyway - check it out at http://sporkmonger.com/projects/feedtools
NOTE: This is for parsing ATOM feeds as I wasn't clear as to whether or not you were looking to provide an ATOM feed or parse others.
我现在选择了 rAtom,它工作得非常好——代码很少而且很好。
I went for rAtom and for now, and it works really good - code is minimal and nice.