Sha256: 39b7ba0800f47d6b55acb9c1db2d4ec13467a8700851e0ba55ea7c571557d89b
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
module Metasploit module Model # Holds components of {VERSION} as defined by {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0}. module Version # The major version number. MAJOR = 0 # The minor version number, scoped to the {MAJOR} version number. MINOR = 24 # The patch number, scoped to the {MINOR} version number. PATCH = 1 # The prerelease name of the given {MAJOR}.{MINOR}.{PATCH} version number. Will not be defined on master. PRERELEASE = 'semantic-versioning-2-0' # The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the {PRERELEASE} in the # {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format. # # @return [String] '{MAJOR}.{MINOR}.{PATCH}' on master. '{MAJOR}.{MINOR}.{PATCH}-{PRERELEASE}' on any branch # other than master. def self.full version = "#{MAJOR}.#{MINOR}.#{PATCH}" if defined? PRERELEASE version = "#{version}-#{PRERELEASE}" end version end end # @see Version.full VERSION = Version.full end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
metasploit-model-0.24.1.pre.semantic.pre.versioning.pre.2.pre.0 | lib/metasploit/model/version.rb |