Skip to content

Instantly share code, notes, and snippets.

@Gozala
Created May 2, 2010 22:16
Show Gist options
  • Save Gozala/387502 to your computer and use it in GitHub Desktop.
Save Gozala/387502 to your computer and use it in GitHub Desktop.
bespin gist: tests/gist.js
/**
* Checks all the dependencies and returns true if all of them are
* satisfied
* @returns {boolean}
*/
noun.__defineGetter__('reliable', function relible(){
for each (var dependency in this.dependencies)
if (!dependency.reliable) return false
return true;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment