rzane/baby_squeel

View on GitHub
lib/baby_squeel/active_record/version_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'baby_squeel/dsl'

module BabySqueel
  module ActiveRecord
    class VersionHelper
      # Example
      #   BabySqueel::ActiveRecord::VersionHelper.at_least_7_1?
      #
      # def self.at_least_7_1?
      #   ::ActiveRecord::VERSION::MAJOR > 7 ||
      #     ::ActiveRecord::VERSION::MAJOR == 7 && ::ActiveRecord::VERSION::MINOR >= 1
      # end
    end
  end
end