Ruby: "loaderror: cannot load such file" problem

Example:

require 'non_existent_file'
This error is raised when Ruby cannot locate the file you are trying to require.

Solution:

# Ensure the file exists and the path is correct.
require 'correct_path/to_file'

Beginner's Guide to Ruby