Rails Autoload and Ruby Require
Rails methods of locating and loading files is mostly based on convention but is built on top of Ruby’s methods. Ruby The basic way to tell a ruby to load a file is to require it, e.g. require some_file will load some_file.rb if the file has not already been loaded. load some_file.rb will load the […]