diff --git a/.travis.yml b/.travis.yml index 2032f9b19..6ae863a40 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: ruby rvm: - - 2.3.0 - 2.4.0 - 2.5.0 - 2.6.0 diff --git a/beef b/beef index 77e2c831c..e5addf31a 100755 --- a/beef +++ b/beef @@ -12,11 +12,11 @@ $VERBOSE = nil # -# @note Version check to ensure BeEF is running Ruby 2.3+ +# @note Version check to ensure BeEF is running Ruby 2.4+ # -if RUBY_VERSION < '2.3' +if RUBY_VERSION < '2.4' puts - puts "Ruby version #{RUBY_VERSION} is no longer supported. Please upgrade to Ruby version 2.3 or later." + puts "Ruby version #{RUBY_VERSION} is no longer supported. Please upgrade to Ruby version 2.4 or later." puts exit 1 end