diff options
author | michaelt <what_is_it_to_do_anything@yahoo.com> | 2014-02-05 05:18:45 -0500 |
---|---|---|
committer | michaelt <what_is_it_to_do_anything@yahoo.com> | 2014-02-05 05:18:45 -0500 |
commit | a008fca5db4c33cf639f095c53bc60737f72e1fb (patch) | |
tree | 6a9cec97476bda722a8c7da6a6af8fa51b16adb7 | |
parent | b23136b1aed02febbe0fa539c2b74edbecd9e1e0 (diff) | |
download | text-pipes-a008fca5db4c33cf639f095c53bc60737f72e1fb.tar.gz text-pipes-a008fca5db4c33cf639f095c53bc60737f72e1fb.tar.zst text-pipes-a008fca5db4c33cf639f095c53bc60737f72e1fb.zip |
gitignore os x nonsense
-rw-r--r-- | .DS_Store | bin | 12292 -> 0 bytes | |||
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Pipes/Text.hs | 6 | ||||
-rw-r--r-- | pipes-text.cabal | 2 |
4 files changed, 7 insertions, 2 deletions
diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index a67b8b2..0000000 --- a/.DS_Store +++ /dev/null | |||
Binary files differ | |||
@@ -1,5 +1,6 @@ | |||
1 | dist | 1 | dist |
2 | cabal-dev | 2 | cabal-dev |
3 | .DS_Store | ||
3 | *.o | 4 | *.o |
4 | *.hi | 5 | *.hi |
5 | *.chi | 6 | *.chi |
diff --git a/Pipes/Text.hs b/Pipes/Text.hs index bbf200f..c0c0946 100644 --- a/Pipes/Text.hs +++ b/Pipes/Text.hs | |||
@@ -159,13 +159,17 @@ module Pipes.Text ( | |||
159 | 159 | ||
160 | -- * Re-exports | 160 | -- * Re-exports |
161 | -- $reexports | 161 | -- $reexports |
162 | , Decoding(..) | ||
163 | , streamDecodeUtf8 | ||
164 | , decodeSomeUtf8 | ||
165 | , Codec(..) | ||
166 | , TextException(..) | ||
162 | , module Data.ByteString | 167 | , module Data.ByteString |
163 | , module Data.Text | 168 | , module Data.Text |
164 | , module Data.Profunctor | 169 | , module Data.Profunctor |
165 | , module Data.Word | 170 | , module Data.Word |
166 | , module Pipes.Parse | 171 | , module Pipes.Parse |
167 | , module Pipes.Group | 172 | , module Pipes.Group |
168 | , module Pipes.Text.Internal | ||
169 | ) where | 173 | ) where |
170 | 174 | ||
171 | import Control.Exception (throwIO, try) | 175 | import Control.Exception (throwIO, try) |
diff --git a/pipes-text.cabal b/pipes-text.cabal index c5b47d0..02cd1fc 100644 --- a/pipes-text.cabal +++ b/pipes-text.cabal | |||
@@ -1,5 +1,5 @@ | |||
1 | name: pipes-text | 1 | name: pipes-text |
2 | version: 0.0.0.4 | 2 | version: 0.0.0.5 |
3 | synopsis: Text pipes. | 3 | synopsis: Text pipes. |
4 | description: Many of the pipes and other operations defined here mirror those in | 4 | description: Many of the pipes and other operations defined here mirror those in |
5 | the `pipes-bytestring` library. Folds like `length` and grouping | 5 | the `pipes-bytestring` library. Folds like `length` and grouping |