add embark simulator cmd

This commit is contained in:
Iuri Matias 2015-10-12 09:09:11 -04:00
parent 5628089865
commit da9c705f7f
1 changed files with 6 additions and 1 deletions

View File

@ -6,6 +6,7 @@ var wrench = require('wrench');
var grunt = require('grunt'); var grunt = require('grunt');
require('shelljs/global'); require('shelljs/global');
var readYaml = require('read-yaml'); var readYaml = require('read-yaml');
var EtherSim = require('ethersim');
var Embark = require('..'); var Embark = require('..');
var run = function(cmd) { var run = function(cmd) {
@ -172,10 +173,14 @@ program.command('meteor_demo').description('create a working meteor dapp with a
console.log('\n\ninit complete'); console.log('\n\ninit complete');
}); });
program.command('simulator').description('run a fast ethereum rpc simulator').action(function() {
EtherSim.startServer();
});
program.parse(process.argv) program.parse(process.argv)
if (!process.argv.slice(2).length) { if (!process.argv.slice(2).length) {
program.outputHelp(); program.outputHelp();
} }
exit(); //exit();