Im sure this is another forehead slapper that will turn my face red, but for some reason I’m getting an error when I try to use require 'curb' at the top of my ruby script or in irb:
LoadError: no such file to load -- curb
I ran sudo gem install curb and found I had to run sudo apt-get install libcurl3-gnutls-dev in order to get the gem install to work.
What am I missing here?
Since I am not using a bundler, I had to add
require 'rubygems'at the beginning of my list of requires.