1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*!
This crate provides a library for executing system commands.

# Usage

This crate is [on crates.io](https://crates.io/crates/reef) and can be
used by adding `reef` to your dependencies in your project's `Cargo.toml`.

```toml
[dependencies]
reef = "0"
```

If you're using Rust 2015, then you'll also need to add it to your crate root:

```rust
extern crate reef;
```

# Example: execute a command that is in the system PATH

note: git must be available in the system PATH for this example to work.

```rust
use reef::Command;
let git_version = Command::new("git --version").exec();
assert!(git_version.stdout.contains("git version"));
```

*/

#![crate_name = "reef"]

#[macro_use]
extern crate error_chain;
pub mod duration;
pub use crate::duration::Duration;
mod errors;
pub use crate::errors::Error;
pub use crate::errors::ErrorKind;
pub use crate::errors::Result;

mod secrets;
pub use crate::secrets::Secrets;

mod paths;
pub use crate::paths::Paths;
mod text;

mod status;
pub use crate::status::Status;

mod env;
pub use crate::env::Env;

mod command;
pub use crate::command::Command;

mod commands;
pub use crate::commands::Commands;