I\'ve one file, main.rb with the following content:
require \"tokenizer.rb\"
The tokenizer.rb file is in the same directory and it
I would recommend,
load './tokenizer.rb'
Given, that you know the file is in the same working directory.
If you're trying to require it relative to the file, you can use
require_relative 'tokenizer'
I hope this helps.