ActiveRecordAddons

A small library of helper methods for ActiveRecord.

ActiveRecord::Relation

Opt into enhancements for ActiveRecord::Relation

ActiveRecord::Relation.send :include, ActiveRecordAddons::Relation

Extract the where clause from an ActiveRecord::Relation

User.where(last_name: %w(Cruise Cavill Rhames)).to_where_clause
# => "users"."last_name" IN ('Cruise', 'Cavill', 'Rhames')