module Wharel::QueryMethods

Public Instance Methods

or(*, &block) click to toggle source
Calls superclass method
# File lib/wharel.rb, line 16
def or(*, &block)
  block_given? ? super(model.where(VirtualRow.build_query(self, &block))) : super
end