method

default_lockfile

ruby latest stable - Class: Bundler::SharedHelpers

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

default_lockfile()
public

No documentation available.

# File lib/bundler/shared_helpers.rb, line 38
    def default_lockfile
      gemfile = default_gemfile

      case gemfile.basename.to_s
      when "gems.rb" then Pathname.new(gemfile.sub(/.rb$/, ".locked"))
      else Pathname.new("#{gemfile}.lock")
      end.untaint
    end