├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── asset.go ├── bytewriter.go ├── config.go ├── convert.go ├── convert_test.go ├── debug.go ├── doc.go ├── go-bindata ├── AppendSliceValue.go ├── main.go └── version.go ├── release.go ├── restore.go ├── stringwriter.go ├── testdata ├── Makefile ├── dupname │ ├── foo │ │ └── bar │ └── foo_bar ├── in │ ├── a │ │ └── test.asset │ ├── b │ │ └── test.asset │ ├── c │ │ └── test.asset │ └── test.asset ├── out │ ├── compress-memcopy.go │ ├── compress-nomemcopy.go │ ├── debug.go │ ├── debug.go-bindata │ ├── nocompress-memcopy.go │ └── nocompress-nomemcopy.go ├── symlinkFile │ └── file1 ├── symlinkParent │ └── symlinkTarget ├── symlinkRecursiveParent │ ├── file1 │ └── symlinkTarget └── symlinkSrc │ ├── file1 │ ├── file2 │ ├── file3 │ └── file4 └── toc.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | dist/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/README.md -------------------------------------------------------------------------------- /asset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/asset.go -------------------------------------------------------------------------------- /bytewriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/bytewriter.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/config.go -------------------------------------------------------------------------------- /convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/convert.go -------------------------------------------------------------------------------- /convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/convert_test.go -------------------------------------------------------------------------------- /debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/debug.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/doc.go -------------------------------------------------------------------------------- /go-bindata/AppendSliceValue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/go-bindata/AppendSliceValue.go -------------------------------------------------------------------------------- /go-bindata/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/go-bindata/main.go -------------------------------------------------------------------------------- /go-bindata/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/go-bindata/version.go -------------------------------------------------------------------------------- /release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/release.go -------------------------------------------------------------------------------- /restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/restore.go -------------------------------------------------------------------------------- /stringwriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/stringwriter.go -------------------------------------------------------------------------------- /testdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/testdata/Makefile -------------------------------------------------------------------------------- /testdata/dupname/foo/bar: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /testdata/dupname/foo_bar: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /testdata/in/a/test.asset: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /testdata/in/b/test.asset: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /testdata/in/c/test.asset: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /testdata/in/test.asset: -------------------------------------------------------------------------------- 1 | // sample file 2 | -------------------------------------------------------------------------------- /testdata/out/compress-memcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/testdata/out/compress-memcopy.go -------------------------------------------------------------------------------- /testdata/out/compress-nomemcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/testdata/out/compress-nomemcopy.go -------------------------------------------------------------------------------- /testdata/out/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/testdata/out/debug.go -------------------------------------------------------------------------------- /testdata/out/debug.go-bindata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/testdata/out/debug.go-bindata -------------------------------------------------------------------------------- /testdata/out/nocompress-memcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/testdata/out/nocompress-memcopy.go -------------------------------------------------------------------------------- /testdata/out/nocompress-nomemcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/testdata/out/nocompress-nomemcopy.go -------------------------------------------------------------------------------- /testdata/symlinkFile/file1: -------------------------------------------------------------------------------- 1 | ../symlinkSrc/file1 -------------------------------------------------------------------------------- /testdata/symlinkParent/symlinkTarget: -------------------------------------------------------------------------------- 1 | ../symlinkSrc/ -------------------------------------------------------------------------------- /testdata/symlinkRecursiveParent/file1: -------------------------------------------------------------------------------- 1 | // test file 1 2 | -------------------------------------------------------------------------------- /testdata/symlinkRecursiveParent/symlinkTarget: -------------------------------------------------------------------------------- 1 | ../symlinkRecursiveParent/ -------------------------------------------------------------------------------- /testdata/symlinkSrc/file1: -------------------------------------------------------------------------------- 1 | // symlink file 1 2 | -------------------------------------------------------------------------------- /testdata/symlinkSrc/file2: -------------------------------------------------------------------------------- 1 | // symlink file 2 2 | -------------------------------------------------------------------------------- /testdata/symlinkSrc/file3: -------------------------------------------------------------------------------- 1 | // symlink file 3 2 | -------------------------------------------------------------------------------- /testdata/symlinkSrc/file4: -------------------------------------------------------------------------------- 1 | // symlink file 4 2 | -------------------------------------------------------------------------------- /toc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containous/go-bindata/HEAD/toc.go --------------------------------------------------------------------------------