I am new to Rails. I was asked to make some improvements to existing project. I downloaded it from Heroku. It uses ruby "1.8.7", thanks to rvm I also have it for project's directory. I managed to bundle update and bundle install. Now I try to 'rails server' and I get error messages:
/home/jacek/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:55: uninitialized constant ActiveSupport::Dependencies::Mutex (NameError)
from /home/jacek/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-2.3.5/lib/active_support.rb:56:in `require'
from /home/jacek/.rvm/gems/ruby-1.8.7-p371/gems/activesupport-2.3.5/lib/active_support.rb:56
from /home/jacek/.rvm/gems/ruby-1.8.7-p371/gems/rails-2.3.5/bin/../lib/rails_generator.rb:28:in `require'
from /home/jacek/.rvm/gems/ruby-1.8.7-p371/gems/rails-2.3.5/bin/../lib/rails_generator.rb:28
from /home/jacek/.rvm/gems/ruby-1.8.7-p371/gems/rails-2.3.5/bin/rails:14:in `require'
from /home/jacek/.rvm/gems/ruby-1.8.7-p371/gems/rails-2.3.5/bin/rails:14
from /home/jacek/.rvm/gems/ruby-1.8.7-p371/bin/rails:19:in `load'
from /home/jacek/.rvm/gems/ruby-1.8.7-p371/bin/rails:19
from /home/jacek/.rvm/gems/ruby-1.8.7-p371/bin/ruby_noexec_wrapper:14
How can I solve this problem? Thank you!
Jacek