So in Rails 4 the long desired feature to use not queries has been added.
not
Article.where.not(title: \'Rails 3\')
Has similar su
It seems that the rails master branch is now supporting OR queries. https://github.com/rails/rails/pull/16052
I assume it will be in the framework with the next major release.