Rails 3.2.3 . I have a Rails application with /libat my startups. One of my library files requires a bunch of such files
Dir[Rails.root.join("lib/foo/*.rb")].each { |f| require f }
During development, these files do not reload if I modify them. For example, if I change /lib/foo/bar.rb, I will have to restart the server to see these changes. Can someone suggest a way so that for each request they are restarted properly?
source
share