Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
k0001 committed Jun 3, 2013
0 parents commit d9119d8
Show file tree
Hide file tree
Showing 8 changed files with 104 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
*.swp
*.swn
*.swo
*~
cabal-dev
dist
*.prof
*.eventlog
*.hi
*.o
TAGS
vendor
.shelly
30 changes: 30 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
Copyright (c) 2013, Renzo Carbonara

All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.

* Neither the name of Renzo Carbonara nor the names of other
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# HEAD

* First version.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# pipes-aeson

Utilities to encode or decode **JSON** input on **Pipes** streams using
**Aeson**.

Check the source or rendered Haddocks for documentation.

This code is licensed under the terms of the so called **3-clause BSD
license**. Read the file named ``LICENSE`` found in this same directory
for details.

See the ``PEOPLE`` file to learn about the people involved in this
effort.
2 changes: 2 additions & 0 deletions Setup.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain
38 changes: 38 additions & 0 deletions pipes-aeson.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: pipes-aeson
version: 0.1.0.0
license: BSD3
license-file: LICENSE
copyright: Copyright (c) Renzo Carbonara 2013
author: Renzo Carbonara
maintainer: renzocarbonaraλgmail.com
stability: Experimental
tested-with: GHC ==7.4.1
homepage: https://github.com/k0001/pipes-aeson
bug-reports: https://github.com/k0001/pipes-aeson/issues
category: Pipes, Parser
build-type: Simple
cabal-version: >=1.8
synopsis: Encode and decode JSON streams using aeson and pipes.
extra-source-files: README.md PEOPLE NEWS
description:
Utilities to encode and decode JSON streams using @aeson@ and @pipes@.
.
See the @NEWS@ file in the source distribution to learn about any
important changes between version.

source-repository head
type: git
location: git://github.com/k0001/pipes-aeson.git

library
hs-source-dirs: src
exposed-modules: Control.Proxy.Aeson
build-depends:
aeson (>=0.6.1 && < 0.7)
, base (>=4.5 && < 5.0)
, pipes (>=3.3 && <3.4)
, pipes-attoparsec (>=0.2 && <0.3)
, bytestring (>=0.9.2.1)
, text
, transformers (>=0.2 && <=0.4)
ghc-options: -Wall -O2
2 changes: 2 additions & 0 deletions sources.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
./
git://github.com/k0001/pipes-attoparsec.git master
3 changes: 3 additions & 0 deletions src/Control/Proxy/Aeson.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Control.Proxy.Aeson
(
) where

0 comments on commit d9119d8

Please sign in to comment.