packages feed

load-env-0.1.1: load-env.cabal

name:                   load-env
version:                0.1.1
author:                 Pat Brisbin <pbrisbin@gmail.com>
maintainer:             Pat Brisbin <pbrisbin@gmail.com>
license:                BSD3
license-file:           LICENSE
synopsis:               Load environment variables from a file.
category:               Configuration
description:            Parse a .env file and load any declared variables into
                        the current process's environment. This allows for a
                        .env file to specify development-friendly defaults for
                        configuration values normally set in the deployment
                        environment.
cabal-version:          >= 1.10
build-type:             Simple

library
  default-language:     Haskell2010
  hs-source-dirs:       src
  ghc-options:          -Wall
  exposed-modules:      LoadEnv
                      , LoadEnv.Parse
  build-depends:        base >= 4.7.0 && < 5
                      , directory
                      , parsec

test-suite spec
  type:                 exitcode-stdio-1.0
  default-language:     Haskell2010
  hs-source-dirs:       test
  ghc-options:          -Wall
  main-is:              Spec.hs
  build-depends:        base
                      , load-env
                      , directory
                      , hspec
                      , HUnit
                      , parsec

source-repository head
  type:                 git
  location:             https://github.com/pbrisbin/load-env