That title might sound ridiculous - to be more specific, I can get irb running but I cannot interpret Ruby files from the command prompt.
I tried using the "load" command. The shell couldn't find the filename:
> load("Scraper.rb")
LoadError: cannot load such file -- Scraper.rb
from (irb):3:in 'load'
from (irb):3
from C:/Ruby200-x64/bin/irb:12:in '<main>'
Even giving the global path did not help. I also tried running these instructions to add the local directory to shell path, but they didn't work: Adding a directory to $LOAD_PATH (Ruby)
I also tried adding execution of .rb files with an rubyinstaller to the PATH. I followed these instructions, but they are too outdated: http://rubyonwindowsguides.github.io/book/ch02-01.html