Sha256: 44cb6fc290297e3e001d578f3b4947114def0951509dea3b48601db811d0be93

Contents?: true

Size: 372 Bytes

Versions: 1

Compression:

Stored size: 372 Bytes

Contents

require "lockfile_preserver/version"
require "lockfile_preserver/bundled_with"

module LockfilePreserver
  def self.keep(original, updated, section = :bundled_with)
    if section == :bundled_with
      LockfilePreserver::BundledWith.new(original, updated).keep
    else
      abort "We currently only support preserve BUNDLED_WITH section of lockfile."
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lockfile_preserver-1.0.0 lib/lockfile_preserver.rb