method

parse_bundled_with

ruby latest stable - Class: Bundler::LockfileParser

Method not available on this version

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

parse_bundled_with(line)
private

No documentation available.

# File lib/bundler/lockfile_parser.rb, line 246
    def parse_bundled_with(line)
      line = line.strip
      return unless Gem::Version.correct?(line)
      @bundler_version = Gem::Version.create(line)
    end