aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rake/rake_module.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rake/rake_module.rb')
-rw-r--r--lib/rake/rake_module.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/rake/rake_module.rb b/lib/rake/rake_module.rb
index 6f77d1b674..fcf5800064 100644
--- a/lib/rake/rake_module.rb
+++ b/lib/rake/rake_module.rb
@@ -32,13 +32,6 @@ module Rake
application.options.rakelib << file
end
end
-
- # Get a sorted list of files matching the pattern. This method
- # should be prefered to Dir[pattern] and Dir.glob[pattern] because
- # the files returned are guaranteed to be sorted.
- def glob(pattern, *args)
- Dir.glob(pattern, *args).sort
- end
end
end