Method: What::Modules.config_module_full_paths
- Defined in:
- lib/what/modules.rb
.config_module_full_paths ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/what/modules.rb', line 12 def self.config_module_full_paths paths = Config["module_paths"] || [] paths.map do |path| path.include?("/") ? path : File.join(Config["base"], path) end end |