class RubyChecker::OutdatedRubyError

OutdatedRubyError is raised whenever the current Ruby is detected to be too old.

Public Class Methods

new(supported) click to toggle source
Calls superclass method
# File lib/ruby_checker/errors.rb, line 49
def initialize(supported)
  super("Please, use Ruby #{supported}")
end