MathManiac
MathManiac

Reputation: 1

Rails deployment to Windows Server

I am trying to serve up a Rails application to a Windows Server that runs on a PostgreSQL DB. Was wondering if anyone had any resources/experience that would help this brutal process. I keep running into the Nokogiri build problem where, I can successfully bundle install but then when I run rake db:create it throws this error:

'require': cannot load such file -- 'nokogiri\nokogiri' (LoadError)

Upvotes: 0

Views: 52

Answers (1)

Rob Perry
Rob Perry

Reputation: 23

Nokogiri won't support windows and ruby 2.2.x until the next release (which should be very soon). see flavorjones's reply and post

Hi all, I just emailed nokogiri-talk about a Windows release. If you don't subscribe, you should ... TL;DR we're going to get this out the door this week, honest. Thanks for your patience.

I believe there are issues because it doesn't suport native builds (relying on prebuilt DLLs instead.

Upvotes: 1

Related Questions