I have seen the run_once method in some code like
run_once do
[:hello, :core, :gems, :plugins, :lib, :initializers, :routes, :app, :helpers].each do |f|
require File.join_from_here('mack', 'boot', "#{f}.rb")
end
end
I found it in Kernel, but not sure what it does... something to do with running once I guess...