Sha256: c6d505acc240b11e660b91358757f9d0c15d84cef7c39dbe8f26905918c66d87

Contents?: true

Size: 638 Bytes

Versions: 1

Compression:

Stored size: 638 Bytes

Contents

# Sakuru [![Gem Version](https://badge.fury.io/rb/sakuru.svg)](http://badge.fury.io/rb/sakuru)

A tiny full-text search engine by pure Ruby.

## Installation

    $ gem install sakuru

## Usage

```ruby
require "sakuru"

db = Sakuru::Database.new
db.add(file_path)
db.add(uri)
db.search(query)
db.save(output_path)
db.load(saved_file_path)
```

## License

MIT License. See LICENSE.txt for details.

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sakuru-0.0.1 README.md