So in Rails 4 the long desired feature to use not
queries has been added.
Article.where.not(title: 'Rails 3')
Has similar support been added for or
queries, or are they planning to make it. I couldn't find anything by browsing through the release notes.
Obviously I tried
Article.where(title: 'Rails 3').or(title: 'Rails 4')
But that does not work.