Sha256: 917f345d1ac4abe904b2ad1fea28993150889b2e5365ec4dcbb8b553ec5424b7
Contents?: true
Size: 599 Bytes
Versions: 1
Compression:
Stored size: 599 Bytes
Contents
module Rupert class RPM class Signature class Entry # Initializes a new index entry. # # @param tag [String] 4 byte entry tag (semantic data type) # @param type [String] 4 byte entry data format # @param offset [String] 4 byte pointer to data in the index store # @param count [String] 4 byte number of data items held by the entry def initialize(tag, type, offset, count) @tag, @type, @offset, @count = tag, type, offset, count end attr_accessor :tag, :type, :offset, :count end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rupert-0.0.1 | lib/rupert/rpm/signature/entry.rb |