├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── goreplace.go ├── matcher.go ├── tests └── main.t └── utils.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.6 2 | /gr-* 3 | /goreplace 4 | /build/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/goreplace/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/goreplace/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/goreplace/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/goreplace/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/goreplace/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/goreplace/HEAD/go.sum -------------------------------------------------------------------------------- /goreplace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/goreplace/HEAD/goreplace.go -------------------------------------------------------------------------------- /matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/goreplace/HEAD/matcher.go -------------------------------------------------------------------------------- /tests/main.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/goreplace/HEAD/tests/main.t -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/goreplace/HEAD/utils.go --------------------------------------------------------------------------------