summaryrefslogtreecommitdiff
path: root/tool/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2024-02-16 17:59:38 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-02-16 17:59:38 +0900
commit0301473fb523c71d8cdc4966971f31f502001185 (patch)
treefd81919131805ec79daa4c553c0750728c822596 /tool/lib
parente3f452e5d7616fc1f1c2d9ddd70f0fca45971cd2 (diff)
Fixed dependencies list format
Diffstat (limited to 'tool/lib')
-rw-r--r--tool/lib/bundled_gem.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/tool/lib/bundled_gem.rb b/tool/lib/bundled_gem.rb
index 4c9568a1f1..c414016eb6 100644
--- a/tool/lib/bundled_gem.rb
+++ b/tool/lib/bundled_gem.rb
@@ -6,13 +6,13 @@ require 'rubygems/package'
# unpack bundled gem files.
module BundledGem
- DEFAULT_GEMS_DEPENDENCIES = %w[
- net-protocol # net-ftp
- time # net-ftp
- singleton # prime
- ipaddr # rinda
- forwardable # prime, rinda
- ruby2_keywords # drb
+ DEFAULT_GEMS_DEPENDENCIES = [
+ "net-protocol", # net-ftp
+ "time", # net-ftp
+ "singleton", # prime
+ "ipaddr", # rinda
+ "forwardable", # prime, rinda
+ "ruby2_keywords" # drb
]
module_function