packages feed

snaplet-actionlog-0.2: snaplet-actionlog.cabal

name:           snaplet-actionlog
version:        0.2
synopsis:       Generic action log snaplet for the Snap Framework
description:    This snaplet contains support for logging website actions.
                Common actions are creating, updating, and deleting records.
license:        BSD3
license-file:   LICENSE
author:         Soostone Inc. Ozgun Ataman, Doug Beardsley
maintainer:     ozataman@gmail.com, mightybyte@gmail.com
build-type:     Simple
cabal-version:  >= 1.6
homepage:       https://github.com/soostone/snaplet-actionlog
category:       Web, Snap

extra-source-files:  LICENSE

data-files:
  schema.txt
  resources/templates/index.tpl
  resources/templates/show.tpl
  resources/templates/_details.tpl
  resources/templates/_form.tpl
  resources/templates/_list.tpl

source-repository head
  type:     git
  location: https://github.com/soostone/snaplet-actionlog.git

Library
  hs-source-dirs: src

  exposed-modules:
    Snap.Snaplet.ActionLog

  other-modules:
    Snap.Snaplet.ActionLog.API
    Snap.Snaplet.ActionLog.Resource
    Snap.Snaplet.ActionLog.Types
    Snap.Snaplet.ActionLog.InternalTypes
    Paths_snaplet_actionlog

  build-depends:
    base                       >= 4       && < 5,
    blaze-builder              >= 0.3     && < 0.4,
    bytestring                 >= 0.9.1   && < 0.11,
    digestive-functors         >= 0.6     && < 0.7,
    digestive-functors-heist   >= 0.7     && < 0.8,
    digestive-functors-snap    >= 0.6     && < 0.7,
    errors                     >= 1.4.1   && < 1.5,
    heist                      >= 0.12    && < 0.13,
    persistent                 >= 1.2     && < 1.3,
    persistent-postgresql      >= 1.2     && < 1.3,
    persistent-template        >= 1.2     && < 1.3,
    readable                   >= 0.1     && < 0.2,
    restful-snap               >= 0.1     && < 0.2,
    snap                       >= 0.11.3  && < 0.13,
    snap-extras                >= 0.4     && < 0.6,
    snaplet-persistent         >= 0.2     && < 0.3,
    text                       >= 0.11    && < 0.12,
    time                       >= 1.1     && < 1.5,
    transformers               >= 0.3     && < 0.4,
    unordered-containers       >= 0.2     && < 0.3,
    xmlhtml                    >= 0.2     && < 0.3


  ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
               -fno-warn-orphans -fno-warn-unused-do-bind