summaryrefslogtreecommitdiff
path: root/lib/bundler/runtime.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2023-03-02 20:18:35 +0100
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-02-08 14:43:56 +0900
commit24d5e7176e80cecfc38daf80020fb85f1144083b (patch)
treeba0a8e927ba62f509044e6ac0b478f3d3ee5528b /lib/bundler/runtime.rb
parentdebc5aaee57a25745259fd02a54701e6c184fa7c (diff)
[rubygems/rubygems] Refactor lockfile generation
https://github.com/rubygems/rubygems/commit/6a0c03c77f
Diffstat (limited to 'lib/bundler/runtime.rb')
-rw-r--r--lib/bundler/runtime.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/runtime.rb b/lib/bundler/runtime.rb
index 993f1082c3..ec772cfe7b 100644
--- a/lib/bundler/runtime.rb
+++ b/lib/bundler/runtime.rb
@@ -95,7 +95,7 @@ module Bundler
def lock(opts = {})
return if @definition.no_resolve_needed?
- @definition.lock(Bundler.default_lockfile, opts[:preserve_unknown_sections])
+ @definition.lock(opts[:preserve_unknown_sections])
end
alias_method :gems, :specs