#node #rub #buildable

node_rub

Rust Builder for Cargo

3 releases

Uses old Rust 2015

0.0.3 Jan 25, 2015
0.0.2 Jan 15, 2015
0.0.1 Jan 14, 2015

#7 in #buildable

22 downloads per month

MIT license

23KB
498 lines

node-rub

node Rust Builder

Status

Build Status


lib.rs:

Rust Builder for Node.

This crate is intended for use with rub.

If you don't have rub installed, visit https://github.com/rust-builder/rub for installation instructions.

Rub Options

 $ rub node --help
 node - Rust Builder

 Usage:
     rub node [options] [<lifecycle>...]
     rub node (-h | --help)
     rub node --version

 Options:
     -d --dir <dir>        Set the projects directory.
     -b --branch <branch>  Set the build branch. [default: master]
     -t --enable-test      Enable tests.
     -p --prefix <prefix>  Set the installation prefix.
     -u --url <url>        Set the SCM URL.
     -h --help             Show this usage.
     --force-configure     Force the configure lifecycle to run.
     --disable-cares       Disable c-ares as a shared library (v0.9 & v0.10 only).
     --disable-shared-v8   Disable shared v8.
     --disable-optimize    Disable compile-time optimization.
     --version             Show node-rub version.
 

Examples

use buildable::Buildable;
use node_rub::NodeRub;

// To run lifecycle methods outside of rub...
let mut cr = NodeRub::new();
let b = Buildable::new(&mut cr, &vec!["rub".to_string(),
                                      "node".to_string(),
                                      "--version".to_string()]);
assert_eq!(Ok(0), b.version());

Dependencies

~3.5–5.5MB
~101K SLoC