├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── packages.dhall ├── spago.dhall ├── src └── Type │ ├── Trout.purs │ └── Trout │ ├── ContentType.purs │ ├── ContentType │ ├── HTML.purs │ └── JSON.purs │ ├── Header.purs │ ├── Links.purs │ ├── Method.purs │ ├── PathPiece.purs │ ├── Record.js │ └── Record.purs ├── test ├── Main.purs └── Type │ └── Trout │ ├── LinksSpec.purs │ └── TestSite.purs └── trout.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/bower.json -------------------------------------------------------------------------------- /packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/packages.dhall -------------------------------------------------------------------------------- /spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/spago.dhall -------------------------------------------------------------------------------- /src/Type/Trout.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/src/Type/Trout.purs -------------------------------------------------------------------------------- /src/Type/Trout/ContentType.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/src/Type/Trout/ContentType.purs -------------------------------------------------------------------------------- /src/Type/Trout/ContentType/HTML.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/src/Type/Trout/ContentType/HTML.purs -------------------------------------------------------------------------------- /src/Type/Trout/ContentType/JSON.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/src/Type/Trout/ContentType/JSON.purs -------------------------------------------------------------------------------- /src/Type/Trout/Header.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/src/Type/Trout/Header.purs -------------------------------------------------------------------------------- /src/Type/Trout/Links.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/src/Type/Trout/Links.purs -------------------------------------------------------------------------------- /src/Type/Trout/Method.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/src/Type/Trout/Method.purs -------------------------------------------------------------------------------- /src/Type/Trout/PathPiece.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/src/Type/Trout/PathPiece.purs -------------------------------------------------------------------------------- /src/Type/Trout/Record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/src/Type/Trout/Record.js -------------------------------------------------------------------------------- /src/Type/Trout/Record.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/src/Type/Trout/Record.purs -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/test/Main.purs -------------------------------------------------------------------------------- /test/Type/Trout/LinksSpec.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/test/Type/Trout/LinksSpec.purs -------------------------------------------------------------------------------- /test/Type/Trout/TestSite.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/test/Type/Trout/TestSite.purs -------------------------------------------------------------------------------- /trout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-hyper/purescript-trout/HEAD/trout.jpg --------------------------------------------------------------------------------