In Ruby, I can use
target_files = Dir["/some/dir/path/*.rb"]
#=> ["/some/dir/path/foo.rb", "/some/dir/path/bar.rb", "/some/dir/path/baz.rb"]
which will return an array of all of the matching files in a directory. How can I do something similar in Elixir?