summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-07-18 16:42:16 -0600
committerAndre Arko <andre@arko.net>2015-07-18 16:44:56 -0600
commit14a7eb25ee03c9fb4ecf3e4c6b1f44a8267a413a (patch)
tree080c4590629671f0bf0fc23225b9b4b5e5e16e95 /Rakefile
parent6537566d7179d3aee3451ece710cbe79ced95d4c (diff)
downloadbundler-14a7eb25ee03c9fb4ecf3e4c6b1f44a8267a413a.tar.gz
Fix Style/SpaceInsideBlockBraces
closes #3850
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Rakefile b/Rakefile
index d0380dfc54..2d5c9c1cd6 100644
--- a/Rakefile
+++ b/Rakefile
@@ -31,7 +31,7 @@ def clean_files(files, regex, replacement = "")
files.each do |file|
contents = File.read(file)
contents.gsub!(regex, replacement)
- File.open(file, "w") { |f| f << contents }
+ File.open(file, "w") {|f| f << contents }
end
end
@@ -43,7 +43,7 @@ namespace :molinillo do
end
task :clean do
- files = Dir.glob("lib/bundler/vendor/molinillo*/*", File::FNM_DOTMATCH).reject { |f| %(. .. lib).include? f.split("/").last }
+ files = Dir.glob("lib/bundler/vendor/molinillo*/*", File::FNM_DOTMATCH).reject {|f| %(. .. lib).include? f.split("/").last }
rm_r files
end
@@ -68,7 +68,7 @@ namespace :thor do
end
task :clean do
- files = Dir.glob("lib/bundler/vendor/thor*/*", File::FNM_DOTMATCH).reject { |f| %(. .. lib).include? f.split("/").last }
+ files = Dir.glob("lib/bundler/vendor/thor*/*", File::FNM_DOTMATCH).reject {|f| %(. .. lib).include? f.split("/").last }
rm_r files
end
@@ -318,7 +318,7 @@ begin
rm_rf "lib/bundler/man"
end
- task(:require) { }
+ task(:require) {}
end
rescue LoadError