0.0.5 • Published 11 years ago

ribbit v0.0.5

Weekly downloads
22
License
-
Repository
-
Last release
11 years ago

Javascript Tasks

Example task:

var ribbit = require("ribbit");

capirona.run({
	"def hello": {
		"run": function(context, next) {
			console.log("hello %s!", context.get("message"));
			next();	
		}
	}
}).run({
  "hello": {
    "message": "Craig"
  }
}, function() {
	console.log("done");
});

API

creates a new runnable script

.run(source, target, callback)