例如 一个 record 中有两个 scope
class User < ApplicationRecord
scope :onlines, -> { where(:state => 'online') }
scope :invisibles, -> { where(:state => 'invisible') }
end
现在有一个新的 scope,需要用 or 条件将上述两个 scope 连起来
scope :inlines_or_invisibles, lambda #onlines.or.invisibles#
求 inlines_or_invisibles scope 的写法。