packages feed

load-env-0.0.2: load-env.cabal

Name:                   load-env
Version:                0.0.2
Author:                 Pat Brisbin <pbrisbin@gmail.com>
Maintainer:             Pat Brisbin <pbrisbin@gmail.com>
License:                BSD3
License-File:           LICENSE
Synopsis:               Load environment variables from a file.
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
                      , 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