summaryrefslogtreecommitdiff
path: root/lib/bundler/cli
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-07-23 19:19:31 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-03 09:30:00 +0900
commit267a72be800da0ec47f441d7d8210dc6aec137af (patch)
tree800fc3da598bbe32a9a5644193134e4a2355a036 /lib/bundler/cli
parente84e63230bd024b652451cb7d1a44b9d9e0449ae (diff)
[bundler/bundler] Enable `Style/UnneededInterpolation` cop
https://github.com/bundler/bundler/commit/4c6a3c3cf7
Diffstat (limited to 'lib/bundler/cli')
-rw-r--r--lib/bundler/cli/config.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/config.rb b/lib/bundler/cli/config.rb
index 1df2a55d9a..78e035aa02 100644
--- a/lib/bundler/cli/config.rb
+++ b/lib/bundler/cli/config.rb
@@ -114,7 +114,7 @@ module Bundler
else
Bundler.ui.confirm "Settings are listed in order of priority. The top value will be used.\n"
Bundler.settings.all.each do |setting|
- Bundler.ui.confirm "#{setting}"
+ Bundler.ui.confirm setting
show_pretty_values_for(setting)
Bundler.ui.confirm ""
end