CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/core/module/stability.rb
Views: 1904
1
module Msf::Module::Stability
2
extend ActiveSupport::Concern
3
4
module ClassMethods
5
def stability
6
instance = self.new
7
instance.notes['Stability'] || []
8
end
9
end
10
11
def stability
12
self.class.stability
13
end
14
15
def stability_to_s
16
stability * ', '
17
end
18
19
end
20
21