Mario Toffia

Results 28 issues of Mario Toffia

To make releases easier. Use the the github actions instead.

enhancement

This is the command driver infrastructure with the docker binary (shell) implementation. This will allow for plugging a driver such as REST or other to communicate with the docker daemon.

enhancement

As this Issue #160 points out, the new docker -H flag can directly address a ssh:// scheme to connect to a remote daemon without setting up a remote docker-machine. Hence,...

enhancement
under-development

This is split out from Issue #108 since this is much more heavy lifting task. Almost all _docker-compose_ models are created. It needs to have a builder that may allow...

enhancement

Today, FluentDocker needs to have the docker binaries somewhere in the path or explicitly pointed out. A driver model that implements docker binaries and then later on allows for _HTTP_...

enhancement

This PR supports repositores with multiple modules. It will eliminate the need to specify a module. Therefore, all documentation parsing needs to include atleast **one** `go.mod`. It also adds support...

enhancement

When parsing gopackage.go the go/types - types.Config will segfault! ```golang conf := types.Config{Importer: importer.For("source", nil)} info := &types.Info{ Types: make(map[ast.Expr]types.TypeAndValue), Defs: make(map[*ast.Ident]types.Object), Uses: make(map[*ast.Ident]types.Object), } if _, err := conf.Check(file.Name.Name,...

enhancement
Investigate

Initial thought is - around the figures of... | Type | Example | |--------------|:---------------------------------------------------------------------:| |`type` |@mypackagename.MyType | |`type` |@github.com/mariotoffia/goasciidoc/mypackagename.MyType | |`method` |@MyMethod | |`method` |@mypackagename.MyMethod | |`method` |@github.com/mariotoffia/goasciidoc/mypackagename.MyMethod | |`method`...

enhancement

Allow for rendering a sample JSON document based on go structs. In addition interpret json tag. ```golang type DsBuildingMeta struct { TimeZone DsMetaTimeStamp `json:"tz,omitempty"` Sensors map[string]DsMetaTimeStamp `json:"sensors,omitempty"` } ```

enhancement