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
name age message
file .gitignore Tue Jul 01 01:40:40 -0700 2008 ignoring .DS_STORE files [CodeOfficer]
file CHANGELOG Tue Jul 01 01:43:37 -0700 2008 added ability to accept :within and :origin fin... [CodeOfficer]
file LICENSE Tue Jul 01 01:41:08 -0700 2008 importing original files [CodeOfficer]
file README Tue Jul 01 01:48:17 -0700 2008 clarifying the read me a bit [CodeOfficer]
file init.rb Tue Jul 01 01:41:08 -0700 2008 importing original files [CodeOfficer]
directory lib/ Tue Jul 01 01:43:37 -0700 2008 added ability to accept :within and :origin fin... [CodeOfficer]
README
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
  }
)