├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── bin ├── cli.rs └── usage.txt ├── main.rs ├── scripts ├── build ├── install ├── start └── test └── test └── hello.md /.gitignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | target/ 3 | tmp/ 4 | 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/how/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/how/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/how/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/how/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/how/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/how/HEAD/bin/cli.rs -------------------------------------------------------------------------------- /bin/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/how/HEAD/bin/usage.txt -------------------------------------------------------------------------------- /main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/how/HEAD/main.rs -------------------------------------------------------------------------------- /scripts/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cargo build 3 | -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cargo install 3 | -------------------------------------------------------------------------------- /scripts/start: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cargo run "$@" 3 | -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cargo test 3 | -------------------------------------------------------------------------------- /test/hello.md: -------------------------------------------------------------------------------- 1 | # hello 2 | world 3 | --------------------------------------------------------------------------------