packages feed

feature-flipper-0.1.0.0: feature-flipper.cabal

-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack

name:                feature-flipper
version:             0.1.0.0
synopsis:            A minimally obtrusive feature flag library
description:         A minimally obtrusive feature flag library
homepage:            https://github.com/toddmohney/feature-flipper#readme
bug-reports:         https://github.com/toddmohney/feature-flipper/issues
license:             MIT
license-file:        LICENSE
author:              Todd Mohney
maintainer:          toddmohney@gmail.com
copyright:           2017 Todd Mohney
category:            Web
build-type:          Simple
cabal-version:       >= 1.10

extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/toddmohney/feature-flipper

library
  hs-source-dirs:
      src
  default-extensions: OverloadedStrings
  ghc-options: -Wall -fwarn-unused-matches -fwarn-unused-binds -fwarn-unused-imports
  exposed-modules:
      Control.Flipper
      Control.Flipper.Types
  other-modules:
      Paths_feature_flipper
  build-depends:
      base >=4.7 && <5
    , containers
    , mtl
    , text
  default-language: Haskell2010

executable environment-config
  main-is: Main.hs
  hs-source-dirs:
      examples/environment-config
  default-extensions: OverloadedStrings
  ghc-options: -Wall -fwarn-unused-matches -fwarn-unused-binds -fwarn-unused-imports
  build-depends:
      base >=4.7 && <5
    , containers
    , feature-flipper
    , mtl
  default-language: Haskell2010

test-suite feature-flipper-test
  type: exitcode-stdio-1.0
  hs-source-dirs:
      test
  default-extensions: OverloadedStrings
  main-is: Spec.hs
  build-depends:
      base
    , containers
    , feature-flipper
    , hspec
    , mtl
    , QuickCheck
  other-modules:
      Control.FlipperSpec
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  default-language: Haskell2010