summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-07-24 15:47:17 -0500
committerSamuel Giddins <segiddins@segiddins.me>2017-07-24 15:47:17 -0500
commita0c3def86ab8dc4116208eea02643fc3f4883d69 (patch)
tree438014a6d5d921b0dcf3e0066c850994303c2052
parent323d6d2e09678f1c3a1653b0bdf1de2f05a86410 (diff)
downloadbundler-a0c3def86ab8dc4116208eea02643fc3f4883d69.tar.gz
[Validator] Inspect array of symbols for 1.8.7 compatibility
-rw-r--r--lib/bundler/settings/validator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/settings/validator.rb b/lib/bundler/settings/validator.rb
index eae9d4d575..9aa1627fb2 100644
--- a/lib/bundler/settings/validator.rb
+++ b/lib/bundler/settings/validator.rb
@@ -71,7 +71,7 @@ module Bundler
conflicting = with & without
if conflicting.any?
- fail!(key, value, "`#{other_key}` is current set to #{other_setting}", "the `#{conflicting.join("`, `")}` groups conflict")
+ fail!(key, value, "`#{other_key}` is current set to #{other_setting.inspect}", "the `#{conflicting.join("`, `")}` groups conflict")
end
end
end