与 merb 一起使用的 Ruby Atom 生成器

发布于 2024-07-11 19:51:30 字数 415 浏览 5 评论 0原文

我想在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

妥活 2024-07-18 19:51:30

虽然不是特定于 Merb,但您可以考虑使用 FeedTools - 这是一个 Ruby Gem。

你会做类似的事情:

require 'feed_tools'
feed = FeedTools::Feed.open('http://url/feed')

feed.items.each do |item|
  puts item.title + "\n---\n" + item.description + "\n\n"
end

无论如何 - 请在 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:

require 'feed_tools'
feed = FeedTools::Feed.open('http://url/feed')

feed.items.each do |item|
  puts item.title + "\n---\n" + item.description + "\n\n"
end

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.

咿呀咿呀哟 2024-07-18 19:51:30

我现在选择了 rAtom,它工作得非常好——代码很少而且很好。

I went for rAtom and for now, and it works really good - code is minimal and nice.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文