Closed joshcooper closed 1 year ago
Require will scan each entry in the $LOAD_PATH, so avoid that.
The only remaining requires are for ruby standard gems:
require
$ git grep -hE "require ['\"][a-z]+['\"]" lib | sort | uniq require 'forwardable' require 'optparse' require 'pathname' require 'set' require 'stringio' require 'uri'
Require will scan each entry in the $LOAD_PATH, so avoid that.
The only remaining
require
s are for ruby standard gems: