Skip to content

Commit

Permalink
Update readme, cabal & bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ozataman committed Jan 7, 2011
1 parent bdb36b3 commit 844ae2e
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .ghci
@@ -0,0 +1,13 @@
:set -XOverloadedStrings
:set -XGeneralizedNewtypeDeriving
:set -XDeriveDataTypeable
:set -XMultiParamTypeClasses
:set -XFunctionalDependencies
:set -XFlexibleInstances
:set -XTypeSynonymInstances
:set -Wall
:set -isrc
:set -itest/suite
:set -hide-package monads-tf
:set -hide-package monads-fd

8 changes: 6 additions & 2 deletions README.md
Expand Up @@ -4,7 +4,11 @@ Snap Extension for MongoDB
This package provides a straightforward way to integrate MongoDB database This package provides a straightforward way to integrate MongoDB database
connectivity into Snap applications. connectivity into Snap applications.


This is a very crude initial realease to be refined on an ongoing basis. The The API is a work in progress, so expect changes.
API may change, so please use at your own risk for the time being.
Starting with 0.3, this library provides out-of-box integration with Snap.Auth,
but you will need to install the devel branch from the source repo:

https://github.com/snapframework/snap-auth/tree/devel




8 changes: 7 additions & 1 deletion snap-extension-mongodb.cabal
@@ -1,5 +1,5 @@
Name: snap-extension-mongodb Name: snap-extension-mongodb
Version: 0.2.2.0 Version: 0.3.0.0
Synopsis: MongoDB extension for Snap Framework Synopsis: MongoDB extension for Snap Framework
Homepage: https://github.com/ozataman/snap-extension-mongodb Homepage: https://github.com/ozataman/snap-extension-mongodb
License: BSD3 License: BSD3
Expand All @@ -21,13 +21,19 @@ Library
Build-depends: Build-depends:
base >= 4 && < 5 base >= 4 && < 5
, bytestring >= 0.9 , bytestring >= 0.9
, bson
, compact-string-fix >= 0.3.1 && < 0.4 , compact-string-fix >= 0.3.1 && < 0.4
, containers >= 0.3 && < 0.4 , containers >= 0.3 && < 0.4
, mongoDB == 0.9 , mongoDB == 0.9
, mtl >= 2 && < 3 , mtl >= 2 && < 3
, safe
, snap >= 0.3 && < 0.4 , snap >= 0.3 && < 0.4
, snap-core >= 0.3 && < 0.4 , snap-core >= 0.3 && < 0.4
, snap-auth >= 0.1
, time


extensions: extensions:
OverloadedStrings OverloadedStrings
, FlexibleInstances , FlexibleInstances
, TypeSynonymInstances
, MultiParamTypeClasses

0 comments on commit 844ae2e

Please sign in to comment.