summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-04 18:10:05 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-20 14:22:37 +0100
commit2fc242800a6239b9720856ba24277536737ca4d5 (patch)
treea019679b661a7d369153478aec25e032458f92ec
parentcfef45c36cec31e5f4d7dd16ed3ec4b511ab9075 (diff)
downloadbundler-2fc242800a6239b9720856ba24277536737ca4d5.tar.gz
Simplify globbing
No .rb files in there.
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 5a9fefb936..530e1249f5 100644
--- a/Rakefile
+++ b/Rakefile
@@ -358,6 +358,6 @@ end
task :default => :spec
-Dir["task/*.{rb,rake}"].each(&method(:load))
+Dir["task/*.rake"].each(&method(:load))
task :generate_files => Rake::Task.tasks.select {|t| t.name.start_with?("lib/bundler/generated") }