packages feed

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 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.   .   @-  &#123;-# LANGUAGE QuasiQuotes #-&#125;-  &#123;-# LANGUAGE OverloadedStrings #-&#125;+  &#123;-&#35; LANGUAGE QuasiQuotes &#35;-&#125;+  &#123;-&#35; LANGUAGE OverloadedStrings &#35;-&#125;   .   import Web.Apiary   import Network.Wai.Handler.Warp@@ -20,21 +18,25 @@   &#32;&#32;[capture|/:String|] $ do   &#32;&#32;&#32;&#32;stdMethod GET . action $ \\name -> do   &#32;&#32;&#32;&#32;&#32;&#32;contentType "text/html"-  &#32;&#32;&#32;&#32;&#32;&#32;lbs . L.concat $ ["&#60;h1&#62;Hello, ", L.pack name, "!&#60;/h1&#62;"]+  &#32;&#32;&#32;&#32;&#32;&#32;lbs . L.concat $ [&#34;&#60;h1&#62;Hello, &#34;, L.pack name, &#34;!&#60;/h1&#62;&#34;]   @   .-  * 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