No release in over 3 years
Low commit activity in last 3 years
ActiveRecord add-ons & helpers
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

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')