Dionysius

Results 40 issues of Dionysius

Related to #103, but with the difference, that i'm ok with having the fake in a sub-package (omitting `-o` flag) ```golang package abc //go:generate $GOPATH/src/github.com/maxbrunsfeld/counterfeiter/counterfeiter . Foo // some struct...

https://play.golang.org/p/gjrJVEVi5ju I believe this issue has **probably** the same root cause as #162 #103 #90. I added this issue because I'm experiencing this bug as well when using Transformers. The...

help wanted
hacktoberfest

I've written a test case for the issue #167. I'd suggest setting this PR as draft and anyone working on a fix can include this PR branch.

Basically what title says. When using `mdk init`, you get asked for user/pass for mysql and postgres, but not for mariadb. That explains, that the db-credentials `config.php` after `mdk create...

enhancement

Playground: https://play.golang.org/p/5bbxzoB4jNw ```golang package main import ( "fmt" "github.com/spf13/cast" ) func main() { b := []B{{Foo: "one"},{Foo: "two"}} bees, err := cast.ToSliceE(b) if err != nil { panic(err) } fmt.Printf("bees:...

Maybe the cause which leads to #34. According to the Readme: > Spotify's built-in updater is disabled, and Scoop should be used to update it instead. But I am asked...

In `proto3` everything _on wire_ is **optional** (the keyword optional from proto2 does not exist anymore). The `face` plugin produces `Get..()` methods like the `getter` plugin, but unlike that it...

Adds a merge type `Implements` which sits between `Type` and `Kind` merge. Useful for cases where you have many types needed to merge in a specific way without the need...

Go modules is kinda self explanatory. Removed logrus to reduce the dependency footprint. If we really want a logger for those kind of warnings, we should accept a logger interface...