Andrew Carman

Results 3 comments of Andrew Carman

No worries, totally understand. Thanks for updating the readme and replying to the issue so promptly!

We ended up using https://github.com/paulsmith/gogeos instead, along with the command line tool http://www.gdal.org/ogr2ogr.html to get the files into the appropriate format.

Failing test case: ``` it('correctly escapes slashes when reversing routes', function () { var route = RouteParser('/things/:foo'); assert.equal(route.reverse({ foo: 'foo/bar baz' }), '/things/foo%2fbar%20baz'); }); ``` Currently, this returns: ``` 1)...