Project

shookach

0.0
No commit activity in last 3 years
No release in over 3 years
A simple gem for full-text search
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 10.0
~> 3.0
 Project Readme

SHOOKACH

Simple gem for basic full-text search

Installation

$ gem install shookach

Or with Bundler in your Gemfile.

gem 'shookach'

Getting started

Indexing

Index files in ./public/input/ directory and store to ./public/output/

Shookach.index

or

rake shookach:index

Index files from specific directory

Shookach.index({library_path: 'path/to/input/dir/'})

or

rake shookach:index['path/to/input/dir/']

Store indexes file to specific directory

Shookach.index({output_path: 'path/to/output/dir/'})

or

rake shookach:index[,'path/to/output/dir/']

Index files from specific directory and file to specific directory

Shookach.index({library_path: 'path/to/input/dir/', output_path: 'path/to/output/dir/'})

or

rake shookach:index['path/to/input/dir/','path/to/output/dir/']

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/BohdanChaban/shookach.

License

The gem is available as open source under the terms of the MIT License.