apiary 0.1.0.0 → 0.1.0.1
raw patch · 1 files changed
+19/−13 lines, 1 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- apiary.cabal +19/−13
apiary.cabal view
@@ -1,15 +1,13 @@--- Initial apiary.cabal generated by cabal init. For further --- documentation, see http://haskell.org/cabal/users-guide/- name: apiary-version: 0.1.0.0+version: 0.1.0.1+x-revision: 1 synopsis: Simple web framework inspired by scotty. description: Simple web framework inspired by scotty. . @- {-# LANGUAGE QuasiQuotes #-}- {-# LANGUAGE OverloadedStrings #-}+ {-# LANGUAGE QuasiQuotes #-}+ {-# LANGUAGE OverloadedStrings #-} . import Web.Apiary import Network.Wai.Handler.Warp@@ -20,21 +18,25 @@   [capture|/:String|] $ do     stdMethod GET . action $ \\name -> do       contentType "text/html"-       lbs . L.concat $ ["<h1>Hello, ", L.pack name, "!</h1>"]+       lbs . L.concat $ ["<h1>Hello, ", L.pack name, "!</h1>"] @ .- * Nestable route handling(ApiaryT Monad; capture, stdMethod and more.).- * type safe path capture.+ * Nestable route handling(ApiaryT Monad; capture, stdMethod and more.). .+ * type safe path capture.+ . full example & tutorial: <https://github.com/philopon/apiary/blob/master/examples/main.lhs> license: MIT license-file: LICENSE-author: HirotomoMoriwaki-maintainer: philopon.dependence@gmail.com--- copyright: +author: HirotomoMoriwaki<philopon.dependence@gmail.com>+maintainer: HirotomoMoriwaki<philopon.dependence@gmail.com>+Homepage: https://github.com/philopon/apiary+Bug-reports: https://github.com/philopon/apiary/issues+copyright: (c) 2014 Hirotomo Moriwaki category: Web build-type: Simple+stability: experimental -- extra-source-files: cabal-version: >=1.10 @@ -78,5 +80,9 @@ cpp-options: -DDefineMonadLoggerInstance hs-source-dirs: src- ghc-options: -O2 -Wall -threaded+ ghc-options: -O2 -Wall default-language: Haskell2010++source-repository head+ type: git+ location: git://github.com/philopon/apiary.git