Project

General

Profile

nokogiri gem not found

Added by da freak over 10 years ago

- I am using Ruby 2.0.0, Windows 8, latest MySQL Community edition, latest Redmind + DevKit. Ruby is unter C:\Ruby200, redmine is unser C:\Ruby200\Apps\redmine
- what i did so far:
- created so datbase and user, edited database.yml
- ruby dk.rb init
rubdy dk.rb install
gem install bunler
gem install mysql
gem install rails
gem install mongrel
bundle install --without development test
- got error taht mysql2 0.3.13 didnt install right
gem install mysql2 v '0.3.13'
bundle install --without development test
now it worked
rake db:migrate production
got error that rails 3.2.13 was not found, in the C:\Ruby200\lib\ruby\gems\2.0.0\gems i have rails-4.0.0 installed
gem install rails v '3.2.13'
rake db:migrate production
now i got error that nokogiri 16.0 was not found
gem install nokogiri
rake db:migrate production
- still same error
gem install nokogiri -v '1.6.0'
rake db:migrate production
So i checked my folder and the gem is installed @ C:\Ruby200\lib\ruby\gems\2.0.0\gems\nokogiri-1.6.0-x86-mingw32.

So what to do :\?