Created
August 29, 2013 20:52
-
-
Save gorka/6383256 to your computer and use it in GitHub Desktop.
Incluir todos los archivos de un directorio — http://blog.stwrt.ca/2012/11/15/sinatra-code-organization
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
directories = %w(models lib) | |
directories.each do |directory| | |
Dir["#{File.dirname(__FILE__)}/#{directory}/*.rb"].each do |file| | |
require file | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment