summaryrefslogtreecommitdiff
path: root/lib/bundler/definition.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2021-11-17 14:21:48 +0100
committergit <svn-admin@ruby-lang.org>2021-12-03 20:00:49 +0900
commitaa87780f8f27253e216d4883dd4cae84d545ec1b (patch)
treee5aeec0653e890e8339576792076921377b46f8d /lib/bundler/definition.rb
parentca65f7bb8afe747628d3d48caf63e5fcba303e29 (diff)
[rubygems/rubygems] Fix incorrect order in changed sources message
https://github.com/rubygems/rubygems/commit/6f1b5f68de
Diffstat (limited to 'lib/bundler/definition.rb')
-rw-r--r--lib/bundler/definition.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/definition.rb b/lib/bundler/definition.rb
index 9afbdfa07d..9fa62fedca 100644
--- a/lib/bundler/definition.rb
+++ b/lib/bundler/definition.rb
@@ -400,7 +400,7 @@ module Bundler
next if lock_source.nil? || lock_source.can_lock?(dep)
gemfile_source_name = dep.source || "no specified source"
lockfile_source_name = lock_source
- changed << "* #{name} from `#{gemfile_source_name}` to `#{lockfile_source_name}`"
+ changed << "* #{name} from `#{lockfile_source_name}` to `#{gemfile_source_name}`"
end
reason = change_reason