Files
metasploit-gs/lib/metasploit/framework/core/version.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
688 B
Ruby
Raw Normal View History

2014-08-01 21:31:48 -05:00
require 'metasploit/framework/version'
module Metasploit
module Framework
# @note This is a lie. The core libraries are not semantically versioned. This is currently just linked to the
# Metasploit::Framework::Version, which is also not semantically versioned.
module Core
module Version
MAJOR = Metasploit::Framework::Version::MAJOR
MINOR = Metasploit::Framework::Version::MINOR
PATCH = Metasploit::Framework::Version::PATCH
PRERELEASE = Metasploit::Framework::Version::PRERELEASE
end
VERSION = Metasploit::Framework::VERSION
2021-02-17 12:33:59 +00:00
GEM_VERSION = Rex::Version.new(Metasploit::Framework::GEM_VERSION)
2014-08-01 21:31:48 -05:00
end
end
end