Requiring a file sitting in the same directory wouldn’t work with this
require 'something' |
Seems like Ruby 1.9 remove current directory from load path as I read from Stackoverflow
To make it work you could
require './something' |
or use require_relative,
require_relative 'something' |
The thing is,
load 'something.rb' |
still work. So does that mean load and require have different load path?