khiav223577/rails_or

View on GitHub
lib/rails_or/patches/null_relation.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module ActiveRecord::NullRelation
  if method_defined?(:or) and not method_defined?(:rails5_or)
    alias rails5_or or
    def or(*other)
      rails5_or(RailsOr.parse_parameter(self, *other))
    end
  end
end