Spock-digestive 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+9/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- LICENSE +1/−1
- Spock-digestive.cabal +7/−2
- src/Web/Spock/Digestive.hs +1/−1
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2014 Alexander Thiemann <mail@athiemann.net>+Copyright (c) 2014 - 2015 Alexander Thiemann <mail@athiemann.net> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
Spock-digestive.cabal view
@@ -1,13 +1,14 @@ name: Spock-digestive-version: 0.1.0.0+version: 0.1.0.1 synopsis: Digestive functors support for Spock description: Run forms defined using digestive functors with Spock homepage: https://github.com/agrafix/Spock-digestive+Bug-reports: https://github.com/agrafix/Spock-digestive/issues license: MIT license-file: LICENSE author: Alexander Thiemann <mail@athiemann.net> maintainer: mail@athiemann.net-copyright: (c) 2014 Alexander Thiemann <mail@athiemann.net>+copyright: (c) 2014 - 2015 Alexander Thiemann <mail@athiemann.net> category: Web build-type: Simple cabal-version: >=1.10@@ -25,3 +26,7 @@ wai >=3.0 hs-source-dirs: src default-language: Haskell2010++source-repository head+ type: git+ location: git://github.com/agrafix/Spock-digestive.git
src/Web/Spock/Digestive.hs view
@@ -32,5 +32,5 @@ applyParam f = map (f . snd) . filter ((== name) . fst) vars <- (applyParam (TextInput)) <$> params- sentFiles <- (applyParam (FileInput . T.unpack . uf_name) . HM.toList) <$> files+ sentFiles <- (applyParam (FileInput . uf_tempLocation) . HM.toList) <$> files return (vars ++ sentFiles)