Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/core/module/stability.rb
21537 views
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