├── .travis.yml ├── LICENSE ├── README.md ├── common_test.go ├── doc.go ├── fixtures └── bsd.tar ├── index.go ├── index_test.go ├── reader.go ├── reader_test.go ├── utils.go ├── utils_test.go ├── writer.go └── writer_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/README.md -------------------------------------------------------------------------------- /common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/common_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/doc.go -------------------------------------------------------------------------------- /fixtures/bsd.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/fixtures/bsd.tar -------------------------------------------------------------------------------- /index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/index.go -------------------------------------------------------------------------------- /index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/index_test.go -------------------------------------------------------------------------------- /reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/reader.go -------------------------------------------------------------------------------- /reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/reader_test.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/utils.go -------------------------------------------------------------------------------- /utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/utils_test.go -------------------------------------------------------------------------------- /writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/writer.go -------------------------------------------------------------------------------- /writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-rat/HEAD/writer_test.go --------------------------------------------------------------------------------