Ariel Jakobovits

Results 15 issues of Ariel Jakobovits

github is returning a response when adding a member to an organization: ``` { url: '', state: 'pending', role: 'member', organization_url: '', organization: {}, user: {} ```

if I say something like: [].should.contain.an.item.with.property() then it would be neat to keep going and say: [].should.contain.an.item.with.property().and.it.should.have.property() possible?

feature-requests

should any of these be valid? [].should.include.one.item.with.property("isOrganizer", true); [].should.contain.one.item.with.property("isOrganizer", true); I receive this error: Error: cannot use something without include or contains

bug

what about having Graph be an EventEmitter so we can fire events such as when a node is added?

the default behavior of pre/postorder is to accumulate the nodes in an array, but that is just one possible behavior that we could take when visiting each node. This could...

enhancement
priority - medium

in https://gist.github.com/lylepratt/d8bf84b3b7d6932e3549... the example config writes: ``` dest: 'manifest.json' ``` but I believe it must read: ``` dest: ['manifest.json'] ``` else the task will throw the error: ``` Object manifest.json...

bug

proposal is to pass path and basename as such: ``` check = function(filepath, filename) { ... } // where filename = require("path").basename(filepath) ``` `module.exports = requireDirectory module, exclude: check`