class Bundler::LockfileGenerator

def add_specs(specs)

def add_specs(specs)
  # This needs to be sorted by full name so that
  # gems with the same name, but different platform
  # are ordered consistently
  specs.sort_by(&:full_name).each do |spec|
    next if spec.name == "bundler".freeze
    out << spec.to_lock
  end
end