I was trying out Find.find() today and found that if you pass it a directory without a trailing slash, it doesn't traverse the directory. This seems like a bug to me. Is it? If so, how do I report it? e.g. require 'find' Find.find("/tmp/") do |path| puts path end vs. require 'find' Find.find("/tmp/") do |path| puts path end