Module: Metasploit::Concern::Version
- Defined in:
- lib/metasploit/concern/version.rb
Overview
Holds components of VERSION as defined by semantic versioning v2.0.0.
Constant Summary collapse
- MAJOR =
The major version number.
0- MINOR =
The minor version number, scoped to the MAJOR version number.
4- PATCH =
0
Class Method Summary collapse
-
.full ⇒ String
The full version string, including the MAJOR, MINOR, PATCH, and optionally, the ‘PRERELEASE` in the semantic versioning v2.0.0 format.
-
.gem ⇒ String
The full gem version string, including the MAJOR, MINOR, PATCH, and optionally, the PRERELEASE in the RubyGems versioning format.
Class Method Details
.full ⇒ String
The full version string, including the MAJOR, MINOR, PATCH, and optionally, the ‘PRERELEASE` in the semantic versioning v2.0.0 format.
19 20 21 22 23 24 25 26 27 |
# File 'lib/metasploit/concern/version.rb', line 19 def self.full version = "#{MAJOR}.#{MINOR}.#{PATCH}" if defined? PRERELEASE version = "#{version}-#{PRERELEASE}" end version end |
.gem ⇒ String
The full gem version string, including the MAJOR, MINOR, PATCH, and optionally, the PRERELEASE in the RubyGems versioning format.
34 35 36 |
# File 'lib/metasploit/concern/version.rb', line 34 def self.gem full.gsub('-', '.pre.') end |