packages feed

Buster-0.1.0: Buster.cabal

name:                Buster
version:             0.1.0
synopsis:            Hits a set of urls periodically to bust caches
description:
  Buster is a simple tool to periodically make requests to a list of URLs. The
  main use case for this is to bust caches.
license:             MIT
license-file:        LICENSE
author:              Michael Xavier <michael@michaelxavier.net>
maintainer:          Michael Xavier <michael@michaelxavier.net>
copyright:           (c) 2012 Michael Xavier
category:            Web
build-type:          Simple
cabal-version:       >=1.8
tested-with:         GHC == 7.6.1
extra-source-files:
  README.md
  LICENSE
  examples/example.yml
homepage:           http://github.com/michaelxavier/Buster
bug-reports:        http://github.com/michaelxavier/Buster/issues

executable buster
  hs-source-dirs:      src
  main-is:             Buster/Main.hs
  ghc-options: -threaded -Wall -fno-warn-unused-do-bind
  build-depends:  base >= 4 && < 5,
                  bytestring ==0.10.*,
                  conduit ==0.5.*,
                  yaml ==0.8.*,
                  errors ==1.3.*,
                  unix >=2.4.2.0,
                  http-conduit ==1.8.*,
                  http-types ==0.7.*,
                  unbounded-delays ==0.1.*,
                  data-default ==0.5.*,
                  hslogger ==1.2.*,
                  transformers ==0.3.*,
                  hinotify ==0.3.*

test-suite spec
  type:           exitcode-stdio-1.0
  main-is:        Spec.hs
  hs-source-dirs: test,src
  build-depends:  base >= 4 && < 5,
                  bytestring ==0.10.*,
                  hspec == 1.4.*,
                  hspec-expectations == 0.3.*,
                  string-qq,
                  http-types ==0.7.*,
                  temporary ==1.1.*,
                  yaml ==0.8.*,
                  -- WHY?
                  hslogger ==1.2.*,
                  unix >=2.4.2.0,
                  errors ==1.3.*,
                  http-conduit ==1.8.*

source-repository head
  Type:     git
  Location: git://github.com/MichaelXavier/Buster.git