public
Description: my personal fork of acts_as_fulltext_indexed
Homepage: http://www.codeofficer.com/
Clone URL: git://github.com/CodeOfficer/acts_as_fulltext_indexed.git
CodeOfficer (author)
Tue Jul 01 01:48:17 -0700 2008
commit  f02fb6ecc26bbe8d5aea16b1dd3a4b9ac915081a
tree    b73e90075c90d19d98bb7379249b156e611d7e6e
parent  eb962f51729fe5e8efa27ee6d41ded6ea560eb10
100644 19 lines (16 sloc) 0.532 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Fork of acts_as_fulltext_indexed: Readme
----------------------------------------------------------------
* Web: http://www.codeofficer.com/
* Email: spam*@*codeofficer*dot*com
* Original: http://blog.antiarc.net/2007/05/01/introducing-acts_as_fulltext_indexed/
 
This fork adds compatibility for geokit's :origin and :within finder options
 
So you can do:
  
@listings = Job.search( params[:search_terms],
  {
    :origin => etc,
    :within => etc,
    :conditions => etc,
    :order => etc,
    :limit => etc
  }
)