/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/rex/version.rb
13 строк
387 B
dwelch-r7
rubocop files and make the exclusions more localised
15 мар 2021, 16:27
15 мар 2021, 16:27
6aaf44c
Код
Авторство
О чём код?
# rubocop:disable Lint/DeprecatedGemVersion class Rex::Version < Gem::Version def initialize(version) if version.nil? # Rubygems 4 is deprecating `nil` as a valid version number # Currently it is the equivalent of a `0` so we set that here to keep the same functionality version = 0 end super version end end # rubocop:enable Lint/DeprecatedGemVersion