I’d be quite interested in a feature merging scopes with OR - currently the default way is AND.
The feature seems to have been requested/reported here:
https://github.com/rails/rails/issues/5545
A pull request was sent, but it needs some work.
I wrote a quick attempt too here: https://gist.github.com/3312792
It uses the syntax: Jobship.includes(:job).or(Jobship.accepted, Jobship.declined).count
though it might be better like this:
Jobship.where(accepted.or(declined)).count
Thoughts?
It doesn’t look like it should be too hard - any reason why this isn’t included in the current ActiveRecord?
I haven’t dug too deep into ActiveRecord::Relation or Arel… but I think this is a common use case.
Anyone interested in helping me work on this further?
Steve