method

default_lockfile

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