I assume that you are talking about using Watir on a Windows computer. In my experience, installing Ruby correctly is the hardest part.
First of all, install everything as if you were on a 32-bit system. A 64-bit installation often causes unwanted problems.
However, the ffi stone can also cause problems, so you will have to remove it and reinstall it using specific tags:
gem uninstall ffi gem install ffi
Finally, the error showing LoadError: cannot load such file -- watir-classic simply means that what you are doing is trying to use a specific stone that is not there. In this case, watir-classic , so the following should fix the following:
gem install watir-classic
Complete Installation Guide for Watir on Windows
Gijs paulides
source share