class Dotenv::Rails

def self.load

instance, which means `Kernel#load` gets called here. We don't want that.
Rails uses `#method_missing` to delegate all class methods to the
def self.load
  instance.load
end