Feedzirra and Rails 3
Feedzirra is probably one of the best Ruby RSS parsers. But if you're using it with Rails 3, you may get an error message like so:
no such file to load -- active_support/core_ext/time
If that happens, locate your feedzirra.rb file on your machine and comment out the lines:
#require 'active_support/core_ext/object'
#require 'active_support/core_ext/time'
Add these lines:
require 'active_support/core_ext'
require 'active_support/time'
Are you a Git user? Let me help you make project management with Git simple. Checkout Gitpilot.
Follow me on Twitter @jprichardson and read my blog on building a software business.
comments powered by Disqus