Ruroonga Command
===
[](https://travis-ci.org/cosmo0920/ruroonga_command)
[Documentation](http://cosmo0920.github.io/ruroonga_command/ruroonga_command/index.html)
## An extensible Groonga Query Builder for Rust.
ruroonga_command provides extensible Groonga command query builder and generator. It reduces runtime errors about Groonga queries.
## Usage
Add following lines to your Cargo.toml:
```toml
[dependencies]
ruroonga_command = "~0.2.0"
```
and following lines to your crate root:
```rust,ignore
extern crate ruroonga_command;
```
### A complete example
```rust
extern crate ruroonga_command as ruroonga;
use ruroonga::dsl::*;
use ruroonga::commandable::Commandable;
fn select_cli_example() {
let select = select("Entries".to_string())
.filter("content @ \"fast\"".to_string()).to_command();
println!("command: {:?}", select);
}
fn main() {
select_cli_example();
}
```
## LICENSE
[MIT](LICENSE).