Geoff Jacobsen
Geoff Jacobsen
In commit bc07c483c3b986c66834b5fe019bb75597dd45ab the prefix option in `cleanupIds` was removed. In the v2 version this option used to only prefix non preserved ids. Now the `prefixIds` plugin conflicts with `cleanupIds`...
This might be related to the promises bug #16 In my prod code it blocks for 20 seconds but as a gist it blocks indefinately ``` javascript var pg =...
Similar to issue #264 static and instance functions with the same name are being confused for the same property. . The error message is only shown in strict mode. For...
The line `(result = `uuidgen`.strip rescue nil).empty?` does not work since `empty?` is not a method in `Nil` class. You could use `nil?` or `blank?` but why even call `uuidgen`;...