packages feed

webapp 0.0.1 → 0.0.2

raw patch · 3 files changed

+21/−1 lines, 3 files

Files

+ CHANGELOG.md view
@@ -0,0 +1,4 @@+# webapp changelog++v 0.0.1 - Initial release+v 0.0.2 - Fix omitted module in `webapp.cabal`: `Web.App.Monad.Internal`
+ Web/App/Monad/Internal.hs view
@@ -0,0 +1,14 @@+{-# OPTIONS_HADDOCK hide, prune, ignore-exports #-}+ +module Web.App.Monad.Internal+(+  WebApp(..)+)+where+  +import Web.App.FileCache (FileCache)++data WebApp s = WebApp {+  webAppCache :: FileCache,+  webAppState :: s+}
webapp.cabal view
@@ -1,5 +1,5 @@ Name:                webapp-Version:             0.0.1+Version:             0.0.2 Synopsis:            Haskell web scaffolding using Scotty, WAI, and Warp Homepage:            https://github.com/fhsjaagshs/webapp Bug-reports:         https://github.com/fhsjaagshs/webapp/issues@@ -16,6 +16,7 @@  Extra-source-files:     README.md+    CHANGELOG.md  Library   build-tools:       hsc2hs@@ -33,6 +34,7 @@   other-modules:     Web.App.Gzip                      Web.App.Privileges                      Web.App.TerminalSize+                     Web.App.Monad.Internal   default-language:  Haskell2010   build-depends:     base >= 4.8.0.0 && <= 4.8.1.0,                      mtl,