Recursive Glob in Ruby
Find every `.rb` file under a tree with Dir.glob and `**` recursion.
Author:
chris
// Language: Ruby
Dir.glob('**/*.rb').each do |path|
puts path
end