rethinkdb-model (empty) → 0.1.0.1
raw patch · 5 files changed
+72/−0 lines, 5 filesdep +aesondep +basedep +mtlsetup-changed
Dependencies added: aeson, base, mtl, rethinkdb, text, transformers, unordered-containers
Files
- Database/RethinkDB/Model.hs +17/−0
- LICENSE +8/−0
- README.md +10/−0
- Setup.hs +2/−0
- rethinkdb-model.cabal +35/−0
+ Database/RethinkDB/Model.hs view
@@ -0,0 +1,17 @@+-- | Haskell client tools for working with RethinkDB models+--+-- Please learn to the 'Database.RethinkDB' driver first+--++module Database.RethinkDB.Model (+ -- ** Ids+ HasId(..), Id,+ insertKey, create, setId,+ -- ** IO+ RethinkIO, runDb++) where++import Database.RethinkDB.Model.HasId+import Database.RethinkDB.Model.IO+
+ LICENSE view
@@ -0,0 +1,8 @@+The MIT License (MIT)+Copyright © 2015 <copyright holders>++Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:++The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.++THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ README.md view
@@ -0,0 +1,10 @@+Database.RethinkDB.Model+=======++Haskell RethinkDB tools for working with models++Documentation++* [Database.RethinkDB.Model](http://hackage.haskell.org/package/rethinkdb-model/docs/Database-RethinkDB-Model.html)+* [Haskell RethinkDB Driver](http://hackage.haskell.org/package/rethinkdb/docs/Database-RethinkDB.html)+
+ Setup.hs view
@@ -0,0 +1,2 @@+import Distribution.Simple+main = defaultMain
+ rethinkdb-model.cabal view
@@ -0,0 +1,35 @@+-- Initial retools.cabal generated by cabal init. For further +-- documentation, see http://haskell.org/cabal/users-guide/++name: rethinkdb-model+version: 0.1.0.1+synopsis: Useful tools for modeling data with rethinkdb+description: Useful tools for modeling data with rethinkdb+license: MIT+license-file: LICENSE+author: Sean Hess+maintainer: Sean Hess <seanhess@gmail.com>+ +homepage: http://github.com/atnnn/haskell-rethinkdb +category: Database+build-type: Simple+extra-source-files: README.md+cabal-version: >=1.10+Source-repository head+ type: git+ location: git@github.com:seanhess/rethinkdb-model.git++library+ exposed-modules: + Database.RethinkDB.Model+ -- other-modules: + -- other-extensions: + default-language: Haskell2010+ build-depends: + base >=4.7 && <4.8,+ rethinkdb >= 1.15.0.0,+ text,+ unordered-containers,+ transformers,+ mtl,+ aeson