mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #33704 from matthewd/helper-path-with-size
Use string lengths instead of regexp to extract path
This commit is contained in:
commit
8f92a72cb3
1 changed files with 1 additions and 2 deletions
|
@ -100,8 +100,7 @@ module ActionController
|
|||
# # => ["application", "chart", "rubygems"]
|
||||
def all_helpers_from_path(path)
|
||||
helpers = Array(path).flat_map do |_path|
|
||||
extract = /^#{Regexp.quote(_path.to_s)}\/?(.*)_helper.rb$/
|
||||
names = Dir["#{_path}/**/*_helper.rb"].map { |file| file.sub(extract, '\1'.freeze) }
|
||||
names = Dir["#{_path}/**/*_helper.rb"].map { |file| file[_path.to_s.size + 1..-"_helper.rb".size - 1] }
|
||||
names.sort!
|
||||
end
|
||||
helpers.uniq!
|
||||
|
|
Loading…
Reference in a new issue