aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorErick Sasse <esasse@gmail.com>2015-07-29 21:07:52 -0300
committerErick Sasse <esasse@gmail.com>2015-07-29 21:07:52 -0300
commit7f31d8635908e15b5a2abfce8fb9873c0c16695b (patch)
tree8ce211600790add7a14af12f1f5385bc3801c48a /Rakefile
parent8583433bc21a94849ece2008fff345b6b883f590 (diff)
downloadbundler-7f31d8635908e15b5a2abfce8fb9873c0c16695b.tar.gz
Use %w[] instead of %w()
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index d5f3bbda..8d85b171 100644
--- a/Rakefile
+++ b/Rakefile
@@ -156,14 +156,14 @@ begin
end
desc "Run the real-world spec suite (requires internet)"
- task :realworld => %w(set_realworld spec)
+ task :realworld => %w[set_realworld spec]
task :set_realworld do
ENV["BUNDLER_REALWORLD_TESTS"] = "1"
end
desc "Run the spec suite with the sudo tests"
- task :sudo => %w(set_sudo spec clean_sudo)
+ task :sudo => %w[set_sudo spec clean_sudo]
task :set_sudo do
ENV["BUNDLER_SUDO_TESTS"] = "1"