Sha256: a62a9868b6359f783adafcd43e30d6e2857ad9dff6a48a0c85a7862ce47504fb
Contents?: true
Size: 375 Bytes
Versions: 1
Compression:
Stored size: 375 Bytes
Contents
# Strabo ## About Strabo makes preparing a Ruby object for full text search by tokenizing an objects attributes. class Book < Hash include Strabo::Indexer end book = Book.new book['title'] = 'Learn to Program' book['author'] = 'Chris Pine' book.keywords # => {"title"=>{"learn"=>1, "to"=>1, "program"=>1}, "author"=>{"chris"=>1, "pine"=>1}}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
strabo-0.0.0 | readme.markdown |