removed block-variable shadowing warning in Rakefile

This commit is contained in:
James A. Rosen 2010-06-13 15:21:11 -04:00
parent 3f208db941
commit 67d752ad0f
1 changed files with 1 additions and 1 deletions

View File

@ -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 }