├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.lhs ├── System └── IO │ └── Temp.hs ├── appveyor.yml ├── release ├── stack.yaml ├── temporary.cabal └── tests └── test.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/README.md -------------------------------------------------------------------------------- /Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/Setup.lhs -------------------------------------------------------------------------------- /System/IO/Temp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/System/IO/Temp.hs -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/appveyor.yml -------------------------------------------------------------------------------- /release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/release -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/stack.yaml -------------------------------------------------------------------------------- /temporary.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/temporary.cabal -------------------------------------------------------------------------------- /tests/test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnkindPartition/temporary/HEAD/tests/test.hs --------------------------------------------------------------------------------