Sha256: 42933cce7a6e1fc0e961f074fc5870e9254a92c5c167c1bcf733bc953c6b6849

Contents?: true

Size: 1.47 KB

Versions: 9

Compression:

Stored size: 1.47 KB

Contents

# Copyright (c) 2013-2015 SUSE LLC
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of version 3 of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.   See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, contact SUSE LLC.
#
# To contact SUSE about this file by physical or electronic mail,
# you may find current contact information at www.suse.com


class Package < Machinery::Object
end

class PackagesScope < Machinery::Array
  include Machinery::Scope

  has_elements class: Package

  def compare_with(other)
    only_self = self - other
    only_other = other - self
    common = self & other

    changed_package_names = only_self.map(&:name) & only_other.map(&:name)
    changed = []

    changed_package_names.each do |name|
      changed << [
        only_self.find { |package| package.name == name },
        only_other.find { |package| package.name == name },
      ]
      only_self.reject! { |package| package.name == name }
      only_other.reject! { |package| package.name == name }
    end

    [
      only_self,
      only_other,
      changed,
      common
    ].map { |e| (e && !e.empty?) ? e : nil }
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
machinery-tool-1.14.2 plugins/packages/packages_model.rb
machinery-tool-1.14.1 plugins/packages/packages_model.rb
machinery-tool-1.14.0 plugins/packages/packages_model.rb
machinery-tool-1.13.0 plugins/packages/packages_model.rb
machinery-tool-1.12.0 plugins/packages/packages_model.rb
machinery-tool-1.11.2 plugins/packages/packages_model.rb
machinery-tool-1.11.1 plugins/packages/packages_model.rb
machinery-tool-1.11.0 plugins/packages/packages_model.rb
machinery-tool-1.10.0 plugins/packages/packages_model.rb