Bruno Franca dos Reis

Results 6 issues of Bruno Franca dos Reis

Adds tests: - `*mem.File` implementation of `io.ReaderAt` must return non-nil error when reading less than length of give slice. - `MemMapFs` must pass `fstest.TestFS` tests for non-empty files. Fixes #352...

The current implementation of `*mem.File` violates the contract defined by the Standard Library's `io.ReaderAt` interface. Specifically, according to [the docs for `io.ReaderAt`](https://pkg.go.dev/io#ReaderAt): > When ReadAt returns n < len(p), it...

Hi, I'm trying to configure zerolog to output logs both to the console and a file, with different formats. I can easily do that with `ConsoleWriter` and `io.MultiWriter`. But I'm...

According to the docs, it's possible to get 100% compatibility with the standard lib: > 100% compatibility with standard lib > > Replace > ```go import "encoding/json" json.Marshal(&data) ``` >...

The core of this PR is the addition of an `Environment map[string]string` field in `type Config struct{...}`, that makes it possible to pass custom environment variables to be use or...

For some reason, the gem won't build on Cygwin unless libstdc++ is added manually through $libs += ' -lstdc++ '.