Sha256: 90731cdafc43b3ee40715a4405a375b0ffe3aed87eb5ad4d1e2b28d15d78abc3
Contents?: true
Size: 1.34 KB
Versions: 3
Compression:
Stored size: 1.34 KB
Contents
# # Copyright 2014 Chef Software, Inc. # # 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. # module Omnibus class ManifestEntry attr_reader :locked_version, :locked_source, :source_type, :described_version, :name def initialize(name, manifest_data) @name = name @locked_version = manifest_data[:locked_version] @locked_source = manifest_data[:locked_source] @source_type = manifest_data[:source_type] @described_version = manifest_data[:described_version] end def to_hash { "locked_version" => @locked_version, "locked_source" => @locked_source, "source_type" => @source_type, "described_version" => @described_version } end def ==(other) if other.is_a?(ManifestEntry) (self.to_hash == other.to_hash) && (self.name == other.name) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
omnibus-5.1.0 | lib/omnibus/manifest_entry.rb |
omnibus-5.0.0 | lib/omnibus/manifest_entry.rb |
omnibus-4.1.0 | lib/omnibus/manifest_entry.rb |