diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-08-25 12:33:23 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-08-25 12:52:10 +0900 |
| commit | bdd535eac6b7dbfae4697f4e965e8b07978322bf (patch) | |
| tree | 9767cc3f75b8ed5c060460257b663d38e2441699 /lib | |
| parent | b635388a900206b673fc23b5442345236b84cd75 (diff) | |
Decorate Hash syntax for Gem::BUNDLED_GEMS::EXACT
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/bundled_gems.rb | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/bundled_gems.rb b/lib/bundled_gems.rb index 469da637ea..0a0d66fee5 100644 --- a/lib/bundled_gems.rb +++ b/lib/bundled_gems.rb @@ -23,17 +23,17 @@ module Gem::BUNDLED_GEMS }.freeze EXACT = { - "abbrev"=>true, - "base64"=>true, - "csv"=>true, - "drb"=>true, - "getoptlong"=>true, - "mutex_m"=>true, - "nkf"=>true, "kconv"=>"nkf", - "observer"=>true, - "resolv-replace"=>true, - "rinda"=>true, - "syslog"=>true, + "abbrev" => true, + "base64" => true, + "csv" => true, + "drb" => true, + "getoptlong" => true, + "mutex_m" => true, + "nkf" => true, "kconv" => "nkf", + "observer" => true, + "resolv-replace" => true, + "rinda" => true, + "syslog" => true, }.freeze PREFIXED = { |
