I was using Ruby 1.8.7 and Rails 3.0.3 in my app untill I got a message from them to upgrade to solve a security issue. I upgraded to 3.2.11 and then to 3.0.19.
I changed the gemfile,
then
bundle update works fine
Now when I try and run rails server ( or bundle exec rails server)
i get a no such file to load -- curb_core (LoadError) as below:-
/vendor/bundle/gems/activesupport-3.0.19/lib/active_support/dependencies.rb:242:in `require': no such file to load -- curb_core (LoadError)
I re-installed curb using ARCHFLAGS="-arch x86_64" - it seemed to works fine. Errors only on the doc installation and updates.
On gem list I see I have curb and curl installed, as below
curb (0.8.3, 0.8.0, 0.7.18, 0.7.17, 0.7.15)
curl (0.0.9)
Any help with this would be much appreciated.