Files
metasploit-gs/lib/metasploit/framework/version.rb
T
Brandon Turner e637237574 Use the Rubygems 2.2 version convention
Substitute version dashes with ".pre.".

MSP-10714
2014-07-16 11:13:14 -05:00

14 lines
286 B
Ruby

module Metasploit
module Framework
module Version
MAJOR = 4
MINOR = 9
PATCH = 3
PRERELEASE = 'dev'
end
VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::PATCH}-#{Version::PRERELEASE}"
GEM_VERSION = VERSION.gsub('-', '.pre.')
end
end