packages feed

simple-form-0.4: simple-form.cabal

name:            simple-form
version:         0.4
cabal-version:   >= 1.8
license:         OtherLicense
license-file:    COPYING
category:        Web
copyright:       © 2013 Stephen Paul Weber
author:          Stephen Paul Weber <singpolyma@singpolyma.net>
maintainer:      Stephen Paul Weber <singpolyma@singpolyma.net>
stability:       experimental
tested-with:     GHC == 7.6.2
synopsis:        Forms that configure themselves based on type
homepage:        https://github.com/singpolyma/simple-form
bug-reports:     https://github.com/singpolyma/simple-form/issues
build-type:      Simple
description:
        Inspired by the RubyGem of the same name, this package allows you to
        easily build validating forms that infer defaults based on type.
        .
        Most users will want to both render 'Html' and parse input, and so
        should use the SimpleForm.Digestive.Combined and SimpleForm.Combined
        modules.

extra-source-files:
        README

library
        exposed-modules:
                SimpleForm,
                SimpleForm.Digestive,
                SimpleForm.Digestive.Combined,
                SimpleForm.Digestive.Validation,
                SimpleForm.Combined,
                SimpleForm.Validation,
                SimpleForm.Render,
                SimpleForm.Render.XHTML5,
                SimpleForm.Render.Bootstrap3

        other-modules:
                SimpleForm.Digestive.Internal

        build-depends:
                base == 4.*,
                blaze-html,
                old-locale,
                time,
                network,
                email-validate,
                transformers,
                text,
                digestive-functors

source-repository head
        type:     git
        location: git://github.com/singpolyma/simple-form.git