Clean up any existing installs with
brew uninstall gdal netcdf libgeotiff libspatialite proj
Add osgeo tap and install (note this will also install python 3.7.7 as a dep)
Clean up any existing installs with
brew uninstall gdal netcdf libgeotiff libspatialite proj
Add osgeo tap and install (note this will also install python 3.7.7 as a dep)
var assert = require('assert'); | |
var net = require('net'); | |
// version 0.8.x passes | |
// version 0.9.4 fails assertion | |
assert.notEqual(new net.Socket().readable, true); |
↑1 modtext/modtext-web git:(master) ▶ jitsu deploy | |
info: Welcome to Nodejitsu bentaber | |
info: jitsu v0.10.4, node v0.8.12 | |
info: It worked if it ends with Nodejitsu ok | |
info: Executing command deploy | |
info: Analyzing application dependencies in node server.js | |
warn: Local package version appears to be old | |
warn: The package.json version will be incremented automatically | |
warn: About to write /Users/bentaber/Documents/dev/modtext/modtext-web/package.json | |
data: |
Ξ modtext/modtext-web git:(master) ▶ jitsu deploy | |
info: Welcome to Nodejitsu bentaber | |
info: jitsu v0.10.4, node v0.8.12 | |
info: It worked if it ends with Nodejitsu ok | |
info: Executing command deploy | |
info: Analyzing application dependencies in node server.js | |
warn: Local package version appears to be old | |
warn: The package.json version will be incremented automatically | |
warn: About to write /Users/bentaber/Documents/dev/modtext/modtext-web/package.json | |
data: |
A simple change baselined off the 3.0.3 version of gitlabhq to allow Reporter level access for all logged in users for all repositories.
Allow searching across all projects, not just projects where the current user is a team member.
diff --git a/app/contexts/search_context.rb b/app/contexts/search_context.rb
index 6e5e8c5..c4bc1b4 100644
--- a/app/contexts/search_context.rb
+++ b/app/contexts/search_context.rb
@@ -10,7 +10,7 @@ class SearchContext
var events = require('events'); | |
var util = require('util'); | |
var Emitter = function() { | |
this.domain = 'abc.com'; | |
}; | |
util.inherits(Emitter, events.EventEmitter); | |
var emitter = new Emitter(); |
var vows = require('vows'); | |
var assert = require('assert'); | |
function doSomethingAsync(callback) { | |
var err = null; | |
var testValue = 'a'; | |
process.nextTick(function() { | |
callback(err, testValue); | |
}); |