├── .gitattributes ├── .github └── workflows │ ├── dev.workflow.yml │ └── master.workflow.yml ├── .gitignore ├── .goreleaser.yml ├── .opensource └── project.json ├── CHANGELOG.md ├── HACKING.md ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── TYPES.md ├── add.go ├── client.go ├── collections.go ├── constants.go ├── copy.go ├── delete.go ├── deleteall.go ├── get.go ├── getall.go ├── go.mod ├── go.sum ├── json.go ├── main.go ├── parser.go ├── query.go ├── release-notes ├── 0.15.0.md ├── 0.20.0.md ├── 0.20.1.md ├── 0.21.0.md ├── 0.21.1.md ├── 0.30.0.md ├── 0.31.0.md ├── 0.31.1.md ├── 0.32.0.md ├── 0.33.0.md └── 0.34.0.md ├── set.go ├── snap └── snapcraft.yaml ├── tests ├── shunit2 └── tests └── writer.go /.gitattributes: -------------------------------------------------------------------------------- 1 | tests/shunit2 linguist-vendored -------------------------------------------------------------------------------- /.github/workflows/dev.workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/.github/workflows/dev.workflow.yml -------------------------------------------------------------------------------- /.github/workflows/master.workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/.github/workflows/master.workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.opensource/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/.opensource/project.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | # TODO 2 | 3 | -------------------------------------------------------------------------------- /TYPES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/TYPES.md -------------------------------------------------------------------------------- /add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/add.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/client.go -------------------------------------------------------------------------------- /collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/collections.go -------------------------------------------------------------------------------- /constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/constants.go -------------------------------------------------------------------------------- /copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/copy.go -------------------------------------------------------------------------------- /delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/delete.go -------------------------------------------------------------------------------- /deleteall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/deleteall.go -------------------------------------------------------------------------------- /get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/get.go -------------------------------------------------------------------------------- /getall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/getall.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/go.sum -------------------------------------------------------------------------------- /json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/json.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/main.go -------------------------------------------------------------------------------- /parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/parser.go -------------------------------------------------------------------------------- /query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/query.go -------------------------------------------------------------------------------- /release-notes/0.15.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/release-notes/0.15.0.md -------------------------------------------------------------------------------- /release-notes/0.20.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/release-notes/0.20.0.md -------------------------------------------------------------------------------- /release-notes/0.20.1.md: -------------------------------------------------------------------------------- 1 | - Remove --batch option from documentation. 2 | -------------------------------------------------------------------------------- /release-notes/0.21.0.md: -------------------------------------------------------------------------------- 1 | - Add support for 'reference' type. 2 | -------------------------------------------------------------------------------- /release-notes/0.21.1.md: -------------------------------------------------------------------------------- 1 | - Add documentation about snap install. 2 | -------------------------------------------------------------------------------- /release-notes/0.30.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/release-notes/0.30.0.md -------------------------------------------------------------------------------- /release-notes/0.31.0.md: -------------------------------------------------------------------------------- 1 | - Changes the operator syntax: [in] to , etc. 2 | -------------------------------------------------------------------------------- /release-notes/0.31.1.md: -------------------------------------------------------------------------------- 1 | - Documentation fix. 2 | -------------------------------------------------------------------------------- /release-notes/0.32.0.md: -------------------------------------------------------------------------------- 1 | - Add support for operators != and not-in 2 | -------------------------------------------------------------------------------- /release-notes/0.33.0.md: -------------------------------------------------------------------------------- 1 | - Adds snap 'app'. 2 | -------------------------------------------------------------------------------- /release-notes/0.34.0.md: -------------------------------------------------------------------------------- 1 | - Adds recursive option to delete command 2 | -------------------------------------------------------------------------------- /set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/set.go -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /tests/shunit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/tests/shunit2 -------------------------------------------------------------------------------- /tests/tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/tests/tests -------------------------------------------------------------------------------- /writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgarciac/fuego/HEAD/writer.go --------------------------------------------------------------------------------