Sha256: 86f6e76b6b4a312ab30dd0cfff0eca2037bb6ec0d5767c1dfff1c4a28963bdff
Contents?: true
Size: 238 Bytes
Versions: 4
Compression:
Stored size: 238 Bytes
Contents
class Rule attr_accessor :framework def initialize(framework, attributes = {}) self.framework = framework attributes.each { |name, value| self.send(:"#{name}=", value) } end def matches?(repository) false end end
Version data entries
4 entries across 4 versions & 1 rubygems