Class: Necropsy::Analyzer

Inherits:
Object
  • Object
show all
Defined in:
lib/necropsy/analyzer.rb

Instance Method Summary collapse

Instance Method Details

#analyze(_graph, _project) ⇒ Object

Raises:

  • (NotImplementedError)


68
69
70
# File 'lib/necropsy/analyzer.rb', line 68

def analyze(_graph, _project)
  raise NotImplementedError, "#{self.class} must implement #analyze"
end

#capabilitiesObject



76
77
78
# File 'lib/necropsy/analyzer.rb', line 76

def capabilities
  [].freeze
end

#profileObject

Raises:

  • (NotImplementedError)


72
73
74
# File 'lib/necropsy/analyzer.rb', line 72

def profile
  raise NotImplementedError, "#{self.class} must implement #profile"
end