**ROR installation not able to install properly **
Rails server not connected after shutdown system, even I entered the command rails s
.
Could anyone please the correct way to manage Ruby on Rails?
**ROR installation not able to install properly **
Rails server not connected after shutdown system, even I entered the command rails s
.
Could anyone please the correct way to manage Ruby on Rails?
Seems like you did not install nokogiri
on your system. You need to do that before you try to run the rails server.
If you are on Mac OSX, try a command like this to install nokogiri
(make the version change according to your need):
gem install nokogiri -- --use-system-libraries=true --with-xml2-include=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/usr/include/libxml2
Then, try to run rails s
command again.
You may also want to take a look at the official page for nokogiri installation.