Method: Sunspot::Query::Join#initialize

Defined in:
lib/sunspot/query/join.rb

#initialize(keywords, target, from, to) ⇒ Join

Returns a new instance of Join.



10
11
12
13
14
15
16
17
18
19
# File 'lib/sunspot/query/join.rb', line 10

def initialize(keywords, target, from, to)
  @keywords = keywords
  @target = target
  @from = from
  @to = to

  @fulltext_fields = {}

  @minimum_match = nil
end