packages feed

yesod-filter-0.1.0.0: yesod-filter.cabal

name:                yesod-filter
version:             0.1.0.0
synopsis:            Automatic filter generator for Yesod
description:         Please see the README on GitHub at <https://github.com/iij-ii/yesod-filter#readme>
homepage:            https://github.com/iij-ii/yesod-filter#readme
license:             BSD3
license-file:        LICENSE
author:              Kenzo Yotsuya
maintainer:          kyotsuya@iij-ii.co.jp
copyright:           IIJ Innovation Institute Inc.
category:            Web
build-type:          Simple
extra-source-files:  README.md
                   , ChangeLog.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Yesod.Filter.TH
                       Yesod.Filter.Read
                       Yesod.Filter.Internal
  other-modules:       Yesod.Filter.Builder
                       Yesod.Filter.Types
  build-depends:       base >= 4.7 && < 5
                     , persistent
                     , template-haskell
                     , text
                     , time
                     , yesod-core
                     , yesod-persistent
  default-language:    Haskell2010

test-suite yesod-filter-test
  type:                exitcode-stdio-1.0
  main-is:             Spec.hs
  other-modules:       Yesod.Filter.InternalSpec
                       Yesod.Filter.ReadSpec
                       Yesod.Filter.TestTypes
                       Yesod.Filter.THSpec
  hs-source-dirs:      test
  ghc-options:         -Wall
  build-depends:       base >= 4.7 && < 5
                     , hspec
                     , persistent
                     , persistent-template
                     , QuickCheck
                     , template-haskell
                     , text
                     , time
                     , yesod-filter
                     , yesod-persistent
  default-language:    Haskell2010

test-suite yesod-filter-doctest
  type:                exitcode-stdio-1.0
  main-is:             doctest-driver.hs
  hs-source-dirs:      test/doctest
  ghc-options:         -Wall
  build-depends:       base >= 4.7 && < 5
                     , doctest
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/iij-ii/yesod-filter