Displaying 3 results from an estimated 3 matches for "typowithferret".
2006 May 18
2
acts_as_ferret 0.2.1
...as_ferret gets it''s own Ferret index on
disk, but you can search multiple models at once using the multi_search
method.
* Supports Rails'' single table inheritance mechanism (just declare
acts_as_ferret in the base class, and be able to search across all
inheriting classes, see TypoWithFerret for an example)
* Aaf is not limited to indexing the attributes of your model: You can
tell it to index the result of any instance method of your model class.
* Further customization of the indexing process can be achieved by
overriding the to_doc instance method in your model class, which is
su...
2006 Jul 06
5
acts_as_ferret Locale issue
...ersion of ferret (gem install ferret) and
acts_as_ferret (script/plugin install
svn://projects.jkraemer.net/acts_as_ferret/tags/plugin/stable/acts_as_ferret)
as of today, 7/6/06.
I have tried setting my locale in environment.rb as mentioned here
http://projects.jkraemer.net/acts_as_ferret/wiki/TypoWithFerret (note:
i''m not using typo, but the locale note at the bottom seems to apply).
So in the Rails::Initializer.run block, I''ve put this line: ENV[''LANG'']
= ''en_US.UTF-8''
Didn''t make a difference. Any other ideas?
Thanks,
Ian.
--
Post...
2006 May 23
13
acts_as_ferret 0.2.1 segfault
Hi,
I just installed via script/plugin from the stable svn tag. (Revision 54)
I''m running Rails 1.1.2 and have Ferret 0.9.3 (with C extensions. no
compilation problems)
I put together a simple model to test it and I''m getting a segfault.
The model:
class Report < ActiveRecord::Base
acts_as_ferret :fields => [:title, :name]
end
$ script/console
Loading development