packages feed

twiml-0.1.0.0: twiml.cabal

-- Initial twiml.cabal generated by cabal init.  For further documentation,
--  see http://haskell.org/cabal/users-guide/

name:                twiml
version:             0.1.0.0
synopsis:            TwiML library for Haskell
description:         TwiML library for Haskell
homepage:            https://github.com/markandrus/twiml-haskell
license:             BSD3
license-file:        LICENSE
author:              Mark Andrus Roberts
maintainer:          markandrusroberts@gmail.com
-- copyright:           
category:            Text, Web, XML
build-type:          Simple
cabal-version:       >=1.8
data-files:          test/xml/dialExample1.xml,
                     test/xml/dialExample2.xml,
                     test/xml/dialExample3.xml,
                     test/xml/enqueueExample1.xml,
                     test/xml/gatherExample1.xml,
                     test/xml/gatherExample2.xml,
                     test/xml/hangupExample1.xml,
                     test/xml/leaveExample1.xml,
                     test/xml/pauseExample1.xml,
                     test/xml/pauseExample2.xml,
                     test/xml/playExample1.xml,
                     test/xml/playExample2.xml,
                     test/xml/recordExample1.xml,
                     test/xml/recordExample2.xml,
                     test/xml/recordExample3.xml,
                     test/xml/redirectExample1.xml,
                     test/xml/redirectExample2.xml,
                     test/xml/rejectExample1.xml,
                     test/xml/rejectExample2.xml,
                     test/xml/sayExample1.xml,
                     test/xml/sayExample2.xml,
                     test/xml/smsExample1.xml,
                     test/xml/smsExample2.xml,
                     test/xml/smsExample3.xml

source-repository head
  type: git
  location: https://github.com/markandrus/twiml-haskell

library
  exposed-modules:     Text.XML.Twiml,
                       Text.XML.Twiml.Types,
                       Text.XML.Twiml.Verbs,
                       Text.XML.Twiml.Verbs.End,
                       Text.XML.Twiml.Verbs.Say,
                       Text.XML.Twiml.Verbs.Play,
                       Text.XML.Twiml.Verbs.Gather,
                       Text.XML.Twiml.Verbs.Record,
                       Text.XML.Twiml.Verbs.Sms,
                       Text.XML.Twiml.Verbs.Dial,
                       Text.XML.Twiml.Verbs.Enqueue,
                       Text.XML.Twiml.Verbs.Leave,
                       Text.XML.Twiml.Verbs.Hangup,
                       Text.XML.Twiml.Verbs.Redirect,
                       Text.XML.Twiml.Verbs.Reject,
                       Text.XML.Twiml.Verbs.Pause,
                       Text.XML.Twiml.Internal
  hs-source-dirs:      src
  -- other-modules:       
  build-depends:       base ==4.6.*, xml >=1.3, network >=2.4

test-suite Tests
  hs-source-dirs:      test
  main-is:             Test.hs
  Type:                exitcode-stdio-1.0
  build-depends:       base ==4.6.*, Cabal >=1.16.0, lens >=3.9, twiml