hi, i don't really know what ruby,gems, or ror is, my objective is make this web application run in my local and after that push it on live. the problem is, when I perform this command
rake db:migrate
i am getting an error saying
rake aborted! Could not find RubyGem rack (~) 1.0.1)
what should I do ? please help me
views:
448answers:
2
+4
A:
It's telling you that you need a specific version of the Gem called "rack". You can install it by doing:
gem install rack -v=1.0.1
This will only install it to your local gem directory. If you want to install it globally (which is recommended for production environments), simply do:
sudo gem install rack -v=1.0.1
This will prompt you for the administrator password as usual.
Mike Trpcic
2010-03-02 16:58:44
now am getting this error sir http://i48.tinypic.com/28l6is1.jpg what should i do next ?
sasori
2010-03-02 17:16:44
ok it got fixed by downloading the libmysql.dll file manually and placing it on the "bin" folder of my ruby inside xampp
sasori
2010-03-02 17:25:29