packages feed

Cabal revisions of scotty-0.11.0

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
-Name:                scotty-Version:             0.11.0-Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp-Homepage:            https://github.com/scotty-web/scotty-Bug-reports:         https://github.com/scotty-web/scotty/issues-License:             BSD3-License-file:        LICENSE-Author:              Andrew Farmer <xichekolas@gmail.com>-Maintainer:          Andrew Farmer <xichekolas@gmail.com>-Copyright:           (c) 2012-Present Andrew Farmer-Category:            Web-Stability:           experimental-Build-type:          Simple-Cabal-version:       >= 1.10-Description:-  A Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp.-  .-  @-    &#123;-&#35; LANGUAGE OverloadedStrings &#35;-&#125;-    .-    import Web.Scotty-    .-    import Data.Monoid (mconcat)-    .-    main = scotty 3000 $ do-    &#32;&#32;get &#34;/:word&#34; $ do-    &#32;&#32;&#32;&#32;beam <- param &#34;word&#34;-    &#32;&#32;&#32;&#32;html $ mconcat [&#34;&#60;h1&#62;Scotty, &#34;, beam, &#34; me up!&#60;/h1&#62;&#34;]-  @-  .-  .-  Scotty is the cheap and cheerful way to write RESTful, declarative web applications.-  .-    * A page is as simple as defining the verb, url pattern, and Text content.-  .-    * It is template-language agnostic. Anything that returns a Text value will do.-  .-    * Conforms to WAI Application interface.-  .-    * Uses very fast Warp webserver by default.-  .-  As for the name: Sinatra + Warp = Scotty.-  .-  [WAI] <http://hackage.haskell.org/package/wai>-  .-  [Warp] <http://hackage.haskell.org/package/warp>--Extra-source-files:-    README.md-    changelog.md-    examples/404.html-    examples/basic.hs-    examples/cookies.hs-    examples/exceptions.hs-    examples/globalstate.hs-    examples/gzip.hs-    examples/options.hs-    examples/upload.hs-    examples/urlshortener.hs-    examples/static/jquery.js-    examples/static/jquery-json.js--Library-  Exposed-modules:     Web.Scotty-                       Web.Scotty.Trans-                       Web.Scotty.Internal.Types-  other-modules:       Web.Scotty.Action-                       Web.Scotty.Route-                       Web.Scotty.Util-  default-language:    Haskell2010-  build-depends:       aeson               >= 0.6.2.1  && < 0.11,-                       base                >= 4.3.1    && < 5,-                       blaze-builder       >= 0.3.3.0  && < 0.5,-                       bytestring          >= 0.10.0.2 && < 0.11,-                       case-insensitive    >= 1.0.0.1  && < 1.3,-                       data-default-class  >= 0.0.1    && < 0.1,-                       fail,-                       http-types          >= 0.8.2    && < 0.10,-                       monad-control       >= 1.0.0.3  && < 1.1,-                       mtl                 >= 2.1.2    && < 2.3,-                       nats                >= 0.1      && < 2,-                       network             >= 2.6.0.2  && < 2.7,-                       regex-compat        >= 0.95.1   && < 0.96,-                       text                >= 0.11.3.1 && < 1.3,-                       transformers        >= 0.3.0.0  && < 0.6,-                       transformers-base   >= 0.4.1    && < 0.5,-                       transformers-compat >= 0.4      && < 0.6,-                       wai                 >= 3.0.0    && < 3.3,-                       wai-extra           >= 3.0.0    && < 3.1,-                       warp                >= 3.0.0    && < 3.3--  GHC-options: -Wall -fno-warn-orphans--test-suite spec-  main-is:             Spec.hs-  other-modules:       Web.ScottySpec-  type:                exitcode-stdio-1.0-  default-language:    Haskell2010-  hs-source-dirs:      test-  build-depends:       async,-                       base,-                       data-default-class,-                       directory,-                       hspec == 2.*,-                       hspec-wai >= 0.6.3,-                       http-types,-                       lifted-base,-                       network,-                       scotty,-                       text,-                       wai-  GHC-options:         -Wall -threaded -fno-warn-orphans--source-repository head-  type:     git-  location: git://github.com/scotty-web/scotty.git+Name:                scotty
+Version:             0.11.0
+x-revision: 1
+Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
+Homepage:            https://github.com/scotty-web/scotty
+Bug-reports:         https://github.com/scotty-web/scotty/issues
+License:             BSD3
+License-file:        LICENSE
+Author:              Andrew Farmer <xichekolas@gmail.com>
+Maintainer:          Andrew Farmer <xichekolas@gmail.com>
+Copyright:           (c) 2012-Present Andrew Farmer
+Category:            Web
+Stability:           experimental
+Build-type:          Simple
+Cabal-version:       >= 1.10
+Description:
+  A Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp.
+  .
+  @
+    &#123;-&#35; LANGUAGE OverloadedStrings &#35;-&#125;
+    .
+    import Web.Scotty
+    .
+    import Data.Monoid (mconcat)
+    .
+    main = scotty 3000 $ do
+    &#32;&#32;get &#34;/:word&#34; $ do
+    &#32;&#32;&#32;&#32;beam <- param &#34;word&#34;
+    &#32;&#32;&#32;&#32;html $ mconcat [&#34;&#60;h1&#62;Scotty, &#34;, beam, &#34; me up!&#60;/h1&#62;&#34;]
+  @
+  .
+  .
+  Scotty is the cheap and cheerful way to write RESTful, declarative web applications.
+  .
+    * A page is as simple as defining the verb, url pattern, and Text content.
+  .
+    * It is template-language agnostic. Anything that returns a Text value will do.
+  .
+    * Conforms to WAI Application interface.
+  .
+    * Uses very fast Warp webserver by default.
+  .
+  As for the name: Sinatra + Warp = Scotty.
+  .
+  [WAI] <http://hackage.haskell.org/package/wai>
+  .
+  [Warp] <http://hackage.haskell.org/package/warp>
+
+Extra-source-files:
+    README.md
+    changelog.md
+    examples/404.html
+    examples/basic.hs
+    examples/cookies.hs
+    examples/exceptions.hs
+    examples/globalstate.hs
+    examples/gzip.hs
+    examples/options.hs
+    examples/upload.hs
+    examples/urlshortener.hs
+    examples/static/jquery.js
+    examples/static/jquery-json.js
+
+Library
+  Exposed-modules:     Web.Scotty
+                       Web.Scotty.Trans
+                       Web.Scotty.Internal.Types
+  other-modules:       Web.Scotty.Action
+                       Web.Scotty.Route
+                       Web.Scotty.Util
+  default-language:    Haskell2010
+  build-depends:       aeson               >= 0.6.2.1  && < 0.12,
+                       base                >= 4.3.1    && < 5,
+                       blaze-builder       >= 0.3.3.0  && < 0.5,
+                       bytestring          >= 0.10.0.2 && < 0.11,
+                       case-insensitive    >= 1.0.0.1  && < 1.3,
+                       data-default-class  >= 0.0.1    && < 0.1,
+                       fail,
+                       http-types          >= 0.8.2    && < 0.10,
+                       monad-control       >= 1.0.0.3  && < 1.1,
+                       mtl                 >= 2.1.2    && < 2.3,
+                       nats                >= 0.1      && < 2,
+                       network             >= 2.6.0.2  && < 2.7,
+                       regex-compat        >= 0.95.1   && < 0.96,
+                       text                >= 0.11.3.1 && < 1.3,
+                       transformers        >= 0.3.0.0  && < 0.6,
+                       transformers-base   >= 0.4.1    && < 0.5,
+                       transformers-compat >= 0.4      && < 0.6,
+                       wai                 >= 3.0.0    && < 3.3,
+                       wai-extra           >= 3.0.0    && < 3.1,
+                       warp                >= 3.0.0    && < 3.3
+
+  GHC-options: -Wall -fno-warn-orphans
+
+test-suite spec
+  main-is:             Spec.hs
+  other-modules:       Web.ScottySpec
+  type:                exitcode-stdio-1.0
+  default-language:    Haskell2010
+  hs-source-dirs:      test
+  build-depends:       async,
+                       base,
+                       data-default-class,
+                       directory,
+                       hspec == 2.*,
+                       hspec-wai >= 0.6.3,
+                       http-types,
+                       lifted-base,
+                       network,
+                       scotty,
+                       text,
+                       wai
+  GHC-options:         -Wall -threaded -fno-warn-orphans
+
+source-repository head
+  type:     git
+  location: git://github.com/scotty-web/scotty.git
revision 2
 Name:                scotty
 Version:             0.11.0
-x-revision: 1
+x-revision: 2
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
                        blaze-builder       >= 0.3.3.0  && < 0.5,
                        bytestring          >= 0.10.0.2 && < 0.11,
                        case-insensitive    >= 1.0.0.1  && < 1.3,
-                       data-default-class  >= 0.0.1    && < 0.1,
+                       data-default-class  >= 0.0.1    && < 0.2,
                        fail,
                        http-types          >= 0.8.2    && < 0.10,
                        monad-control       >= 1.0.0.3  && < 1.1,
revision 3
 Name:                scotty
 Version:             0.11.0
-x-revision: 2
+x-revision: 3
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
                        Web.Scotty.Route
                        Web.Scotty.Util
   default-language:    Haskell2010
-  build-depends:       aeson               >= 0.6.2.1  && < 0.12,
+  build-depends:       aeson               >= 0.6.2.1  && < 1.1,
                        base                >= 4.3.1    && < 5,
                        blaze-builder       >= 0.3.3.0  && < 0.5,
                        bytestring          >= 0.10.0.2 && < 0.11,
revision 4
 Name:                scotty
 Version:             0.11.0
-x-revision: 3
+x-revision: 4
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
                        Web.Scotty.Route
                        Web.Scotty.Util
   default-language:    Haskell2010
-  build-depends:       aeson               >= 0.6.2.1  && < 1.1,
+  build-depends:       aeson               >= 0.6.2.1  && < 1.2,
                        base                >= 4.3.1    && < 5,
                        blaze-builder       >= 0.3.3.0  && < 0.5,
                        bytestring          >= 0.10.0.2 && < 0.11,
revision 5
 Name:                scotty
 Version:             0.11.0
-x-revision: 4
+x-revision: 5
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
                        Web.Scotty.Route
                        Web.Scotty.Util
   default-language:    Haskell2010
-  build-depends:       aeson               >= 0.6.2.1  && < 1.2,
+  build-depends:       aeson               >= 0.6.2.1  && < 1.3,
                        base                >= 4.3.1    && < 5,
                        blaze-builder       >= 0.3.3.0  && < 0.5,
                        bytestring          >= 0.10.0.2 && < 0.11,
revision 6
 Name:                scotty
 Version:             0.11.0
-x-revision: 5
+x-revision: 6
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
                        case-insensitive    >= 1.0.0.1  && < 1.3,
                        data-default-class  >= 0.0.1    && < 0.2,
                        fail,
-                       http-types          >= 0.8.2    && < 0.10,
+                       http-types          >= 0.8.2    && < 0.11,
                        monad-control       >= 1.0.0.3  && < 1.1,
                        mtl                 >= 2.1.2    && < 2.3,
                        nats                >= 0.1      && < 2,
revision 7
 Name:                scotty
 Version:             0.11.0
-x-revision: 6
+x-revision: 7
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
                        case-insensitive    >= 1.0.0.1  && < 1.3,
                        data-default-class  >= 0.0.1    && < 0.2,
                        fail,
-                       http-types          >= 0.8.2    && < 0.11,
+                       http-types          >= 0.8.2    && < 0.12,
                        monad-control       >= 1.0.0.3  && < 1.1,
                        mtl                 >= 2.1.2    && < 2.3,
                        nats                >= 0.1      && < 2,
revision 8
 Name:                scotty
 Version:             0.11.0
-x-revision: 7
+x-revision: 8
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
                        case-insensitive    >= 1.0.0.1  && < 1.3,
                        data-default-class  >= 0.0.1    && < 0.2,
                        fail,
-                       http-types          >= 0.8.2    && < 0.12,
+                       http-types          >= 0.8.2    && < 0.13,
                        monad-control       >= 1.0.0.3  && < 1.1,
                        mtl                 >= 2.1.2    && < 2.3,
                        nats                >= 0.1      && < 2,
revision 9
 Name:                scotty
 Version:             0.11.0
-x-revision: 8
+x-revision: 9
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
                        text                >= 0.11.3.1 && < 1.3,
                        transformers        >= 0.3.0.0  && < 0.6,
                        transformers-base   >= 0.4.1    && < 0.5,
-                       transformers-compat >= 0.4      && < 0.6,
+                       transformers-compat >= 0.4      && < 0.7,
                        wai                 >= 3.0.0    && < 3.3,
                        wai-extra           >= 3.0.0    && < 3.1,
                        warp                >= 3.0.0    && < 3.3
revision 10
 Name:                scotty
 Version:             0.11.0
-x-revision: 9
+x-revision: 10
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
                        Web.Scotty.Route
                        Web.Scotty.Util
   default-language:    Haskell2010
-  build-depends:       aeson               >= 0.6.2.1  && < 1.3,
+  build-depends:       aeson               >= 0.6.2.1  && < 1.4,
                        base                >= 4.3.1    && < 5,
                        blaze-builder       >= 0.3.3.0  && < 0.5,
                        bytestring          >= 0.10.0.2 && < 0.11,
revision 11
 Name:                scotty
 Version:             0.11.0
-x-revision: 10
+x-revision: 11
 Synopsis:            Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp
 Homepage:            https://github.com/scotty-web/scotty
 Bug-reports:         https://github.com/scotty-web/scotty/issues
                        data-default-class,
                        directory,
                        hspec == 2.*,
-                       hspec-wai >= 0.6.3,
+                       hspec-wai >= 0.6.3 && < 0.10,
                        http-types,
                        lifted-base,
                        network,