Closed geomic closed 12 years ago
Use the master branch with:
require 'treat'
include Treat::Core::DSL
c = collection('data')
(as per the error message you should be getting when trying to use the old DSL).
Ah, many thanks!
Works like a charm now, after also doing gem install srx-english
I added a wiki page detailing the new DSL, and made it clearer in the main wiki that the master branch now uses this.
Thanks Louis. Your "The value of an entity is available.." section also helps immensely.
I'm trying to work TF_IDF out. If I use the gem install version, I cannot run c.words[0].tf_idf as per another ticket.
If I use your master branch, I cannot initialize a Collection. In rails console I do (which used to work in the gem install version):
include Treat include Treat::Entities
c = Collection('data') # which fails...