Module: AbstractController::Helpers::Resolution
- Included in:
 - AbstractController::Helpers, ClassMethods
 
- Defined in:
 - actionpack/lib/abstract_controller/helpers.rb
 
Overview
:nodoc:
Instance Method Summary collapse
- #all_helpers_from_path(path) ⇒ Object
 - #helper_modules_from_paths(paths) ⇒ Object
 - #modules_for_helpers(modules_or_helper_prefixes) ⇒ Object
 
Instance Method Details
#all_helpers_from_path(path) ⇒ Object
      48 49 50 51 52 53 54 55  | 
    
      # File 'actionpack/lib/abstract_controller/helpers.rb', line 48 def all_helpers_from_path(path) helpers = Array(path).flat_map do |_path| names = Dir["#{_path}/**/*_helper.rb"].map { |file| file[_path.to_s.size + 1..-"_helper.rb".size - 1] } names.sort! end helpers.uniq! helpers end  | 
  
#helper_modules_from_paths(paths) ⇒ Object
      57 58 59  | 
    
      # File 'actionpack/lib/abstract_controller/helpers.rb', line 57 def helper_modules_from_paths(paths) modules_for_helpers(all_helpers_from_path(paths)) end  | 
  
#modules_for_helpers(modules_or_helper_prefixes) ⇒ Object
      33 34 35 36 37 38 39 40 41 42 43 44 45 46  | 
    
      # File 'actionpack/lib/abstract_controller/helpers.rb', line 33 def modules_for_helpers(modules_or_helper_prefixes) modules_or_helper_prefixes.flatten.map! do |module_or_helper_prefix| case module_or_helper_prefix when Module module_or_helper_prefix when String, Symbol helper_prefix = module_or_helper_prefix.to_s helper_prefix = helper_prefix.camelize unless helper_prefix.start_with?(/[A-Z]/) "#{helper_prefix}Helper".constantize else raise ArgumentError, "helper must be a String, Symbol, or Module" end end end  |