I executed the “rake db:create:all” and it gives following error message
rake/rdoctask is deprecated. Use rdoc/task instead (in RDoc 2.4.2+)
rake aborted!
uninitialized constant ActiveSupport::Dependencies::Mutex
(See full trace by running task with --trace)
I have:
rails => 2.3.5,3.0.7
gem => 1.8.5
ruby => 1.8.7
I will appreciate the help
Thanks in advance
amritpalpathakgne.wordpress.com
Chirag
(Chirag)
4
Open your Rakefile and replace “rake/rdoctask” with “rdoc/task”
Install rdoc gem and add config.gem ‘rdoc’ to your environment file and then you should be good to go.
Chirag
http://sumeruonrails.com
Open your Rakefile and replace “rake/rdoctask” with “rdoc/task”
done
Install rdoc gem
done
and add config.gem ‘rdoc’ to your environment file
done
and then you should be good to go.
Still it didn’t work.rake db:create:all gives now another error as:
rake aborted!
no such file to load – disguise/tasks
(See full trace by running task with --trace)
Thanks for reply !!
amritpalpathakgne.wordpress.com