packages feed

process-streaming 0.9.0.0 → 0.9.0.1

raw patch · 3 files changed

+9/−19 lines, 3 files

Files

process-streaming.cabal view
@@ -1,5 +1,5 @@ name:          process-streaming-version:       0.9.0.0+version:       0.9.0.1 license:       BSD3 license-file:  LICENSE data-files:    
src/System/Process/Streaming.hs view
@@ -7,8 +7,11 @@ -- -- 'Consumer's from @pipes@, 'Parser's from @pipes-parse@ and 'Fold's from -- @foldl@ can be used to consume the standard streams, by--- means of the auxiliary 'Fold1' datatype which is re-exported from--- @pipes-transduce@.+-- means of the auxiliary 'Fold1' datatype from @pipes-transduce@.+--+-- The entirety of "System.Process" and "Pipes.Transduce" is re-exported for+-- convenience.+-- -----------------------------------------------------------------------------  {-# LANGUAGE DeriveFunctor #-}@@ -50,8 +53,6 @@         , withExitCode         -- * A GHCi idiom         -- $ghci-        -- * Re-exports-        -- $reexports         , module System.Process         , module Pipes.Transduce     ) where@@ -466,10 +467,4 @@  -}  -{- $reexports  -"System.Process" is re-exported in its entirety.--"Pipes.Transduce" from the @pipes-transduce@ package is re-exported in its entirety.---} 
src/System/Process/Streaming/Text.hs view
@@ -1,6 +1,7 @@ {-| -    This module re-exports functions useful for treating the @stdout@ and @stderr@-    streams as text.+    This module re-exports the entirety of "Pipes.Transduce.Text" from the+@pipes-transduce@ package. It provides functions useful for treating the+@stdout@ and @stderr@ streams as text.         It is better to import it qualified:  @@ -10,8 +11,6 @@ module System.Process.Streaming.Text (          -- * Examples         -- $examples-        -- * Re-exports-        -- $reexports         module Pipes.Transduce.Text     ) where @@ -91,9 +90,5 @@  -} -{- $reexports  -"Pipes.Transduce.Text" from the @pipes-transduce@ package is re-exported in its entirety.---}