Author: donaldp
Date: Sun Oct  7 05:49:50 2012
New Revision: 1395218

URL: http://svn.apache.org/viewvc?rev=1395218&view=rev
Log:
Use %w rather than array literal syntax

Modified:
    buildr/trunk/rakelib/rspec.rake

Modified: buildr/trunk/rakelib/rspec.rake
URL: 
http://svn.apache.org/viewvc/buildr/trunk/rakelib/rspec.rake?rev=1395218&r1=1395217&r2=1395218&view=diff
==============================================================================
--- buildr/trunk/rakelib/rspec.rake (original)
+++ buildr/trunk/rakelib/rspec.rake Sun Oct  7 05:49:50 2012
@@ -62,7 +62,7 @@ task :load_ci_reporter do
 end
 
 desc 'Run all specs with CI reporter'
-task 'ci' => ['clobber', 'load_ci_reporter', 'spec']
+task 'ci' => %w(clobber load_ci_reporter spec)
 
 def rvm_run_in(version, command)
   if !(Config::CONFIG['host_os'] =~ /mswin|win32|dos/i)


Reply via email to