module VersionGem
module Ruby
RUBY_VER: ::Gem::Version
# Check if the current Ruby version is >= given version for the engine
def self.gte_minimum_version?: (String, ?String) -> bool
# Check if the current Ruby MAJOR.MINOR equals the given values for the engine
def self.actual_minor_version?: ((Integer | String), (Integer | String), ?String) -> bool end end