Sha256: d8614082cc8b2bfae1945d0d71de95e69e7bdd31149e429e7ce0aa5f59ed7158
Contents?: true
Size: 294 Bytes
Versions: 5
Compression:
Stored size: 294 Bytes
Contents
module ActiveSupport::Dependencies def autoloadable_module?(path_suffix) autoload_paths.each do |load_path| path = File.join(load_path, path_suffix) return load_path if File.directory?(path) && Dir.glob(File.join(path, '**/*.rb')).present? end return false end end
Version data entries
5 entries across 5 versions & 1 rubygems