class Rule

Attributes

framework[RW]

Public Class Methods

new(framework, attributes = {}) click to toggle source
# File lib/technologist/rules/rule.rb, line 4
def initialize(framework, attributes = {})
  self.framework = framework

  attributes.each { |name, value| self.send(:"#{name}=", value) }
end

Public Instance Methods

matches?(repository) click to toggle source
# File lib/technologist/rules/rule.rb, line 10
def matches?(repository)
  false
end