classy-prelude-conduit-1.2.0/0000755000000000000000000000000013041075636014304 5ustar0000000000000000classy-prelude-conduit-1.2.0/ChangeLog.md0000644000000000000000000000005713041075636016457 0ustar0000000000000000## 1.0.0 * Support for mono-traversable-1.0.0 classy-prelude-conduit-1.2.0/classy-prelude-conduit.cabal0000644000000000000000000000274413041075636021676 0ustar0000000000000000name: classy-prelude-conduit version: 1.2.0 synopsis: classy-prelude together with conduit functions description: classy-prelude together with conduit functions homepage: https://github.com/snoyberg/mono-traversable license: MIT license-file: LICENSE author: Michael Snoyman maintainer: michael@snoyman.com category: Control, Prelude build-type: Simple cabal-version: >=1.8 extra-source-files: README.md ChangeLog.md library exposed-modules: ClassyPrelude.Conduit build-depends: base >= 4 && < 5 , conduit >= 1.0 && < 1.3 , classy-prelude >= 1.2.0 && < 1.2.1 , transformers , monad-control , resourcet , void , bytestring , conduit-combinators >= 0.2.8 ghc-options: -Wall -fno-warn-orphans test-suite spec type: exitcode-stdio-1.0 main-is: Spec.hs hs-source-dirs: test build-depends: base , hspec , classy-prelude-conduit , bytestring , transformers , QuickCheck , conduit source-repository head type: git location: https://github.com/snoyberg/mono-traversable.git classy-prelude-conduit-1.2.0/LICENSE0000644000000000000000000000207513041075636015315 0ustar0000000000000000Copyright (c) 2012 Michael Snoyman, http://www.yesodweb.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. classy-prelude-conduit-1.2.0/README.md0000644000000000000000000000011213041075636015555 0ustar0000000000000000## classy-prelude-conduit classy-prelude together with conduit functions classy-prelude-conduit-1.2.0/Setup.hs0000644000000000000000000000005613041075636015741 0ustar0000000000000000import Distribution.Simple main = defaultMain classy-prelude-conduit-1.2.0/ClassyPrelude/0000755000000000000000000000000013041075636017063 5ustar0000000000000000classy-prelude-conduit-1.2.0/ClassyPrelude/Conduit.hs0000644000000000000000000000044213041075636021024 0ustar0000000000000000{-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE RankNTypes #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE FlexibleContexts #-} module ClassyPrelude.Conduit ( -- * Re-export module ClassyPrelude , module Conduit ) where import ClassyPrelude import Conduit hiding (throwM) classy-prelude-conduit-1.2.0/test/0000755000000000000000000000000013041075636015263 5ustar0000000000000000classy-prelude-conduit-1.2.0/test/Spec.hs0000644000000000000000000000005413041075636016510 0ustar0000000000000000{-# OPTIONS_GHC -F -pgmF hspec-discover #-}