├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── elm.json ├── src └── Update │ └── Fetch.elm └── tests └── Update └── FetchSpec.elm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gizra/elm-fetch/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gizra/elm-fetch/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gizra/elm-fetch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gizra/elm-fetch/HEAD/README.md -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gizra/elm-fetch/HEAD/elm.json -------------------------------------------------------------------------------- /src/Update/Fetch.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gizra/elm-fetch/HEAD/src/Update/Fetch.elm -------------------------------------------------------------------------------- /tests/Update/FetchSpec.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gizra/elm-fetch/HEAD/tests/Update/FetchSpec.elm --------------------------------------------------------------------------------