lib/calculated_attributes.rb in calculated_attributes-0.4.0 vs lib/calculated_attributes.rb in calculated_attributes-0.5.0

- old
+ new

@@ -4,12 +4,13 @@ # Include patches. require 'calculated_attributes/rails_patches' require 'calculated_attributes/arel_patches' raise "Unsupported ActiveRecord version: #{ActiveRecord::VERSION::MAJOR}" unless [3, 4, 5, 6].include? ActiveRecord::VERSION::MAJOR -# Rails 5.2 has its own patches which are different from 5.0/5.1. In every other +# Rails 5.2 has its own patches which are different from 5.0. In every other # case, just require the patch file for the major version. -if Gem::Version.new(ActiveRecord::VERSION::STRING).canonical_segments.take(2) == [5, 2] +versions = Gem::Version.new(ActiveRecord::VERSION::STRING).canonical_segments.take(2) +if [[5, 2], [5, 1]].include?(versions) require 'calculated_attributes/rails_5_2_patches' else require "calculated_attributes/rails_#{ActiveRecord::VERSION::MAJOR}_patches" end