aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormichaelt <what_is_it_to_do_anything@yahoo.com>2013-10-23 12:47:08 -0400
committermichaelt <what_is_it_to_do_anything@yahoo.com>2013-10-23 12:47:08 -0400
commit434362b1d2ef75552f1328e47ad293e1f4c59cf1 (patch)
tree52ea6b380e13010af4efbf21abe82c33839069c2
parent62e8521c6aff3480716ddb5d74edc7f00a1971ea (diff)
downloadtext-pipes-434362b1d2ef75552f1328e47ad293e1f4c59cf1.tar.gz
text-pipes-434362b1d2ef75552f1328e47ad293e1f4c59cf1.tar.zst
text-pipes-434362b1d2ef75552f1328e47ad293e1f4c59cf1.zip
license etc
-rw-r--r--LICENSE2
-rw-r--r--README.md7
2 files changed, 5 insertions, 4 deletions
diff --git a/LICENSE b/LICENSE
index 568dda0..3b4771d 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
1Copyright (c) 2013, Gabriel Gonzalez, ibotty, michaelt 1Copyright (c) 2013, Gabriel Gonzalez, Tobias Florek, Michael Thompson
2 2
3All rights reserved. 3All rights reserved.
4 4
diff --git a/README.md b/README.md
index 5ad8c66..a3e00fa 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,10 @@ text-pipes
2========== 2==========
3 3
4This repo is called `text-pipes`, but the package is named `pipes-text` as one might expect. 4This repo is called `text-pipes`, but the package is named `pipes-text` as one might expect.
5The two modules it contatins, `Pipes.Text` and `Pipes.Text.Parse`, use materials from [`pipes-text`](https://github.com/ibotty/pipes-text) and 5The two modules it contatins, `Pipes.Text` and `Pipes.Text.Parse`, use materials from [`pipes-text`](https://github.com/ibotty/pipes-text);
6otherwise follows the pattern of [`pipes-bytestring`](https://github.com/Gabriel439/Haskell-Pipes-ByteString-Library), adding a few `pipes-prelude`-like operations. 6otherwise they follow the pattern of [`pipes-bytestring`](https://github.com/Gabriel439/Haskell-Pipes-ByteString-Library), adding a few `pipes-prelude`-like operations.
7The most important function, `decodeUtf8`, written by ibotty, uses the development version of the text package; this package can however be built without it. 7The most important function, `decodeUtf8`, written by ibotty, uses the development version of the text package; this package can however be built with the hackage `text`
8though `decodeUtf8` will then not exist.
8 9
9 >>> runEffect $ stdinLn >-> P.takeWhile (/= "quit") >-> stdoutLn 10 >>> runEffect $ stdinLn >-> P.takeWhile (/= "quit") >-> stdoutLn
10 hi<Return> 11 hi<Return>