Sha256: 0a049a759efc49f1f5ee1a8c185d7292f4e23530bc1457e084ac78dd87530a8e
Contents?: true
Size: 466 Bytes
Versions: 98
Compression:
Stored size: 466 Bytes
Contents
# -*- encoding: utf-8 -*- module Albacore # a package encapsulates the properties of a set package with a # distinct path, version and id class Package # id of the package as known by nuget attr_reader :id # path of the package in question attr_reader :path # create a new package with the given id and path def initialize id, path @id = id @path = path end def to_s "Package[#{path}]" end end end
Version data entries
98 entries across 98 versions & 1 rubygems