initialize(gem)
protected
Creates a new package that will
read or write to the file gem.
# File lib/rubygems/package.rb, line 136
def initialize gem # :notnew:
@gem = gem
@build_time = Time.now
@checksums = {}
@contents = nil
@digests = Hash.new { |h, algorithm| h[algorithm] = {} }
@files = nil
@security_policy = nil
@signatures = {}
@signer = nil
@spec = nil
end