I believe that avoiding any AND / OR / NOT instances in your query that are not intended for logical logic would be your best bet:
Article.search do
fulltext 'Oregon OR'
end
Article.search do
fulltext 'Oregon \OR'
end
, AND/OR/NOT :
fulltext "Oregon \\OR"