If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "you@example.com"
npm set init.author.url "http://yourblog.com"
npm adduser
| package com.example.actors.github | |
| import spray.httpx.Json4sSupport | |
| import org.json4s.{DefaultFormats, Formats} | |
| /** | |
| * Marshalling/Unmarshalling for the github json format | |
| * | |
| * see http://developer.github.com/v3/oauth/#web-application-flow | |
| */ |
| (require 'ansi-color) | |
| (defvar karma-buffer | |
| "*karma-node-specs-buffer*") | |
| (defun karma-compile () | |
| "Run Karma" | |
| (interactive) | |
| (shell-command "karma run" (get-buffer-create karma-buffer)) | |
| (display-buffer karma-buffer) | |
| (with-current-buffer karma-buffer |
| var gulp = require('gulp'); | |
| var browserify = require('browserify'); | |
| var notify = require('gulp-notify'); | |
| var source = require('vinyl-source-stream'); | |
| var watchify = require('watchify'); | |
| var plumber = require('gulp-plumber'); | |
| var less = require('gulp-less'); | |
| var csso = require('gulp-csso'); | |
| var watch = require('gulp-watch'); | |
| var envify = require('envify'); |
| //FightCode can only understand your robot | |
| //if its class is called Robot | |
| var Robot = function(robot) { | |
| }; | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| robot.clone(); |