class QuerySyntax::Scope
Scopes are conditions seperated by operators (NOT | AND | OR)
Attributes
operator[RW]
Public Class Methods
new(operator="AND")
click to toggle source
# File lib/query_syntax/scope.rb, line 8 def initialize(operator="AND") @operator = operator end