Files
metasploit-gs/lib/msf/core/module/stability.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
285 B
Ruby
Raw Normal View History

module Msf::Module::Stability
extend ActiveSupport::Concern
module ClassMethods
def stability
instance = self.new
2018-09-26 21:13:37 -05:00
instance.notes['Stability'] || []
end
end
def stability
self.class.stability
end
def stability_to_s
stability * ', '
end
2018-09-26 21:19:49 -05:00
end