# File lib_core/rucy/loader.rb, line 28 def scan Dir.foreach(@load_path) do |name| if (name !~ /^_/ && name =~ /\.rb$/) then path = File.join(@load_path, name) if (File.file? path) then yield(path) end end end nil end