Last active
November 7, 2016 21:50
-
-
Save AlexWayfer/bca7e0a0ff336731b2c8e00c53501353 to your computer and use it in GitHub Desktop.
Example for meta including
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
# Including neccessary modules from ./base/modules | |
Dir.glob(File.join 'base', 'modules', '*.rb').each do |mod| | |
require mod | |
basename = File.basename mod, '.*' | |
include const_get basename.split('_').map(&:capitalize).join | |
# With helpers: | |
# include basename.camelize.constantize | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment