Since the latest Rails 3 release is not auto-loading modules and classes from lib anymore, what would be the best way to load them?
From github:
config.autoload_paths does not work for me. I solve it in other way
Ruby on rails 3 do not automatic reload (autoload) code from /lib folder. I solve it by putting inside ApplicationController
ApplicationController
Dir["lib/**/*.rb"].each do |path| require_dependency path end