瀏覽代碼

Minor whitespace munge (and reorder to match the current stats list ordering where the list content originates)

Tianon Gravi 10 年之前
父節點
當前提交
842a52fe29
共有 1 個文件被更改,包括 5 次插入6 次删除
  1. 5 6
      test/tests/ruby-gems/container.sh

+ 5 - 6
test/tests/ruby-gems/container.sh

@@ -3,17 +3,16 @@ set -e
 
 # list taken from https://rubygems.org/stats
 for gem in \
-	thor \
 	rake \
-	rails \
 	rack \
+	json \
 	activesupport \
+	thor \
+	rails \
 	activerecord \
 	actionpack \
-	json \
 	actionmailer \
-	activeresource
-	do
-
+	activeresource \
+; do
 	gem install "$gem"
 done