# File lib/templater/discovery.rb, line 72 def generator_files find_latest_gem_paths.inject([]) do |files, gem_path| path = ::File.join(gem_path, "Generators") files << path if ::File.exists?(path) and not ::File.directory?(path) files end end