Files
metasploit-gs/lib/msf/core/module/stability.rb
T
2018-10-24 17:18:09 -05:00

20 lines
285 B
Ruby

module Msf::Module::Stability
extend ActiveSupport::Concern
module ClassMethods
def stability
instance = self.new
instance.notes['Stability'] || []
end
end
def stability
self.class.stability
end
def stability_to_s
stability * ', '
end
end