Module: Metasploit::Credential::Version
- Defined in:
- lib/metasploit/credential/version.rb
Overview
Holds components of VERSION as defined by semantic versioning v2.0.0.
Constant Summary collapse
- MAJOR =
The major version number.
1- MINOR =
The minor version number, scoped to the MAJOR version number.
0- PATCH =
0
Class Method Summary collapse
-
.full ⇒ String
The full version string, including the MAJOR, MINOR, PATCH, and optionally, the ‘Metasploit::Credential::Version::PRERELEASE` in the semantic versioning v2.0.0 format.
-
.gem ⇒ String
The full gem version string, including the MAJOR, MINOR, PATCH, and optionally, the ‘Metasploit::Credential::Version::PRERELEASE` in the RubyGems versioning format.
Class Method Details
.full ⇒ String
The full version string, including the MAJOR, MINOR, PATCH, and optionally, the ‘Metasploit::Credential::Version::PRERELEASE` in the semantic versioning v2.0.0 format.
31 32 33 34 35 36 37 38 39 |
# File 'lib/metasploit/credential/version.rb', line 31 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 ‘Metasploit::Credential::Version::PRERELEASE` in the RubyGems versioning format.
49 50 51 |
# File 'lib/metasploit/credential/version.rb', line 49 def self.gem full.gsub('-', '.pre.') end |