Sha256: d7f7119681bba8f88dd7ba809ce09e809e87a1f40727c76da516e2d915179322

Contents?: true

Size: 290 Bytes

Versions: 1

Compression:

Stored size: 290 Bytes

Contents

module Noticent
  class VersionChecker
    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
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
noticent-0.0.6 lib/noticent/version_checker.rb