aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorErick Sasse <esasse@gmail.com>2015-07-28 20:48:28 -0300
committerErick Sasse <esasse@gmail.com>2015-07-28 20:48:28 -0300
commit8583433bc21a94849ece2008fff345b6b883f590 (patch)
tree26d45c87f20b9e1c3b6258121124cf3a33da2d65 /Rakefile
parent58b6757f601b3660ca6258b5afca0798ff1f7aea (diff)
downloadbundler-8583433bc21a94849ece2008fff345b6b883f590.tar.gz
Fix Style/WordArray
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index b7898f95..d5f3bbda 100644
--- a/Rakefile
+++ b/Rakefile
@@ -156,14 +156,14 @@ begin
end
desc "Run the real-world spec suite (requires internet)"
- task :realworld => ["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 => ["set_sudo", "spec", "clean_sudo"]
+ task :sudo => %w(set_sudo spec clean_sudo)
task :set_sudo do
ENV["BUNDLER_SUDO_TESTS"] = "1"