Last active
December 22, 2015 09:28
-
-
Save convexstyle/6451775 to your computer and use it in GitHub Desktop.
Autoload custom modules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# in configs/application.rb | |
module MyApp | |
class Application < Rails::Application | |
config.autoload_paths += Dir["#{config.root}/lib"] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment