summaryrefslogtreecommitdiff
path: root/lib/bundler/settings.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-04-17 18:54:29 +0900
committergit <svn-admin@ruby-lang.org>2023-04-19 06:56:18 +0000
commitbf8d8ce1ee196a508c934f6664af949ca98548e5 (patch)
treeba7d9ab8027bbc58f5c93ae7d4e067af954fa690 /lib/bundler/settings.rb
parent364c2fea345a2b0cc5f1d975e1b55c7f542a7936 (diff)
[rubygems/rubygems] Keep compatiblity of Bundler specs
https://github.com/rubygems/rubygems/commit/b211eeacba
Diffstat (limited to 'lib/bundler/settings.rb')
-rw-r--r--lib/bundler/settings.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/settings.rb b/lib/bundler/settings.rb
index 1139eab503..8c69e81490 100644
--- a/lib/bundler/settings.rb
+++ b/lib/bundler/settings.rb
@@ -461,7 +461,7 @@ module Bundler
new_k = k.gsub("-", "___")
end
- config[new_k] = v
+ config[new_k] = v.to_s
config
end
end