packages feed

yesod-raml-mock-0.1.0: yesod-raml-mock.cabal

name:                yesod-raml-mock
version:             0.1.0
synopsis:            A mock-handler generator library from RAML.
description:         A mock-handler generator library from RAML.
license:             MIT
license-file:        LICENSE
author:              junji.hashimoto
maintainer:          junji.hashimoto@gmail.com
category:            Web, Yesod
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:   ChangeLog.md
                    , README.md
                    , tests/test.raml

bug-reports:         https://github.com/junjihashimoto/yesod-raml/issues

source-repository head
  type:           git
  location:       https://github.com/junjihashimoto/yesod-raml.git

library
  exposed-modules:     Yesod.Raml.Mock
  -- other-modules:       
  build-depends:       base ==4.*
                     , yesod-core
                     , yesod-raml == 0.2.*
                     , containers
                     , text
                     , yaml
                     , bytestring
                     , template-haskell
  default-language:    Haskell2010
  ghc-options:       -Wall


test-suite test
  type: exitcode-stdio-1.0
  main-is: test.hs
  hs-source-dirs: tests, .
  build-depends:       base ==4.*
                     , text
                     , bytestring
                     , aeson
                     , unordered-containers
                     , containers
                     , yaml
                     , yesod-core
                     , template-haskell
                     , hspec
                     , yesod-raml
                     , yesod-raml-mock
                     , network-uri
                     , regex-posix
                     , vector
                     , yesod-test
  default-language:    Haskell2010
  ghc-options:       -Wall