I\'ve one file, main.rb with the following content:
require \"tokenizer.rb\"
The tokenizer.rb file is in the same directory and it
require loads a file from the $LOAD_PATH. If you want to require a file relative to the currently executing file instead of from the $LOAD_PATH, use require_relative.
require
$LOAD_PATH
require_relative