Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将所有帖子从 tumblr 导入到 refinerycms 博客。我应该怎么做?
谢谢,
您可以使用FeedJira gem。gem 允许您导入 RSS 提要。观看此railscast了解更多详情。
Feedjira::Feed.fetch_and_parse("http://www.foozzz.com/rss").entries.each do |entry| # update refinery blog here Refinery::Blogs::Post.create(:title => entry.title, ....) end