How to solve ‘libcurl’ not found with Rails on Windows

Answer that worked for me (W10/Ruby2.6.0) was: Download cURL from the following URL: https://curl.haxx.se/windows/ (I chose 64bit because that’s the system I’m using) Go into the archive and browse to /bin Locate libcurl_x64.dll (it may be just libcurl.dll) Extract to your local drive Rename it to libcurl.dll if it has the _x64 suffix Cut + … Read more

cannot load such file — script/rails : Getting this error while remote debugging through RubyMine

You are using some weird debug gems, only the following are needed: ruby-debug-base19x ruby-debug-ide First, remove all the ruby-debug* gems, then install the required gems using the following commands: gem install ruby-debug-base19x –pre gem install ruby-debug-ide –pre You should get the following (or newer) versions: ruby-debug-base19x (0.11.30.pre10) ruby-debug-ide (0.4.17.beta9) Adjust your Gemfile to include only … Read more