Trevor Summers Smith

Results 8 issues of Trevor Summers Smith

Issue: When using the `kotlin_binary` rule to create an uberjar, one expects that direct and transitive dependencies are included. It appears that direct kotlin classes are included, but _transitive kotlin...

If one specifies a non-absolute kotlin dependency that ends in the package name, eg 'foo' the code would suffix the _package name_ with "_kt", resulting in an error. The correct...

I am writing a simple client to interact with AWS S3. Their [docs state](http://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-header-based-auth.html): This requires a uri encoding by: URI encode every byte. Uri-Encode() must enforce the following rules:...

enhancement

Transfer the codebase from foreign to cstubs. Get the build system working with this.

Example for the libuv book (https://github.com/nikhilm/uvbook/blob/master/code/tcp-echo-server/main.c). This will require us to implement a double subclass as well as a handle. When this is finished we'll have implemented the majority of...

Implement the rest of the uv_fs functions. Add unit tests.

Ideally we could hide this call from the user. However there's a few subtleties. Option 1: Copy over memory that would be freed to ocaml then call uv_fs_req_cleanup internally, before...

Implement generic exception handling for all methods. This should inspect the integer return value and throw an appropriate exception (see stdlib and core's unix exception modules).