Class: Noticent::VersionChecker

Inherits:
Object
  • Object
show all
Defined in:
lib/noticent/version_checker.rb

Class Method Summary collapse

Class Method Details

.activesupport_7_or_greater?Boolean

Returns:

  • (Boolean)


3
4
5
6
# File 'lib/noticent/version_checker.rb', line 3

def self.activesupport_7_or_greater?
  return @activesupport_7_or_greater unless @activesupport_7_or_greater.nil?
  @activesupport_7_or_greater = ::Gem.loaded_specs["activesupport"].version >= ::Gem::Version.new("7.0.0")
end