Do nothing. All files in this dir are eager loaded in production and lazy loaded in development by default.
(e.g. app/models/concerns/, app/models/products/)
Ask: do I want to namespace modules and classes inside my new dir?
For example in app/models/products/ you would need to wrap your class in module Products
.
If the answer is yes, do nothing. It will just work.
If the answer is no, add config.autoload_paths += %W( #{config.root}/app/models/products )
to your application.rb.
In either case, everything will be eager loaded in production.
If you put something in the lib/ dir, what you are saying is: "I wrote this library, and I want to depend on it where I decide." This means that if you use your library in a rake task, but not in a rails app, you just require
it in your rake task. If you need this library to always be loaded for your rails app, you require
it in an initializer. If you need this library for some of your models or controllers, you require
it in those files, and since everything under your app/
dir is already auto- and eager- loaded as needed, your library will only be "pulled-in" if something that requires it from app/
or rake, or your custom script, actually gets loaded.
Another option is to add your whole lib dir into autoload_paths
: config.autoload_paths += %W( #{config.root}/lib )
. This means you shouldn't explicitly require your lib anywhere. As soon as you hit the namespace of your dir in other classes, rails will require it. The problem with this is that in Rails 3 autoload paths are not eager loaded in production. And in ruby 1.9 autoload is not threadsafe. You probably want eager loading in production. Requiring your lib explicitly, like in option 1, is akin to eager loading it, which is threadsafe.
All the different things under your lib dir should be placed into their own directories, and those directories should be individually added to eager_load_paths
.
config.eager_load_paths += %W(
#{config.root}/lib/my_lib1
#{config.root}/lib/my_lib2
)
This means that you can't just throw files into your lib dir. If you have my_lib1.rb
, you must put it under my_lib1/my_lib1.rb
and my_lib1
should be added to eager load paths. This means that if you have more files in my_lib1
, you should create a dir my_lib1/my_lib1/extra.rb
. This is a bit annoying.
If you add lib/ into eager_load_paths
, everything will work great. Your files will be autoloaded in development, and eager-loaded in production. Except the problem is that eager_load_paths
use globbing like lib/**/*.rb
, meaning that everything in your lib dir will try to get loaded. Your tasks, your generators, everything. This is not what you want.
Regardless of which option you pick (option 1, hint hint), in your lib/ dir you should structure your code as if you structure a gem. If you need more than 1 file, you could for example add a same-named directory where everything is properly namespaced, and let your 1 file relatively require files in that directory.
Thank you! This posting finally explained what I was looking for.