├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── filebuffer.go └── filebuffer_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/filebuffer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/filebuffer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/filebuffer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/filebuffer/HEAD/README.md -------------------------------------------------------------------------------- /filebuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/filebuffer/HEAD/filebuffer.go -------------------------------------------------------------------------------- /filebuffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattetti/filebuffer/HEAD/filebuffer_test.go --------------------------------------------------------------------------------