method

expand_dir

rails latest stable - Class: Rails::Paths::Path

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

expand_dir(path, glob)
private

No documentation available.

# File railties/lib/rails/paths.rb, line 204
      def expand_dir(path, glob)
        Dir.chdir(path) do
          Dir.glob(@glob).map { |file| File.join path, file }.sort
        end
      end