Sha256: 801a82cdfaa207430febdf2da7f87f4b32d0ddd6572838b722a7ff8684b19524

Contents?: true

Size: 1.59 KB

Versions: 15

Compression:

Stored size: 1.59 KB

Contents

#
# Copyright:: Copyright 2016-2018, Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

class Chef
  class Provider
    class Package
      class Yum < Chef::Provider::Package

        # helper class to assist in passing around name/version/arch triples
        class Version
          attr_accessor :name
          attr_accessor :version
          attr_accessor :arch

          def initialize(name, version, arch)
            @name    = name
            @version = version
            @arch    = arch
          end

          def to_s
            "#{name}-#{version}.#{arch}" unless version.nil?
          end

          def version_with_arch
            "#{version}.#{arch}" unless version.nil?
          end

          def matches_name_and_arch?(other)
            other.version == version && other.arch == arch
          end

          def ==(other)
            name == other.name && version == other.version && arch == other.arch
          end

          alias eql? ==
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
chef-14.13.11-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.12.9-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.12.3-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.11.21-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.10.9-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.9.13-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.8.12-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.7.17-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.6.47-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.5.33-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.3.37-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.2.0-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.1.12-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.1.1-universal-mingw32 lib/chef/provider/package/yum/version.rb
chef-14.0.190-universal-mingw32 lib/chef/provider/package/yum/version.rb