CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/core/module/stability.rb
Views: 11784
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