From 67d752ad0f6c340b55f6c4cc477d220a183c6171 Mon Sep 17 00:00:00 2001 From: "James A. Rosen" Date: Sun, 13 Jun 2010 15:21:11 -0400 Subject: [PATCH] removed block-variable shadowing warning in Rakefile --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 5921557..6686f9f 100644 --- a/Rakefile +++ b/Rakefile @@ -87,7 +87,7 @@ desc "Clean pkg and other stuff" task :clean do OMNIAUTH_GEMS.each do |dir| Dir.chdir(dir) do - %w(tmp pkg coverage dist).each { |dir| FileUtils.rm_rf dir } + %w(tmp pkg coverage dist).each { |d| FileUtils.rm_rf d } end end Dir["**/*.gem"].each { |gem| FileUtils.rm_rf gem }