2018-10-26 23:33:53 +03:00
|
|
|
name: LtuPatternFactory
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: Comparing OO Design Patterns with Functional Programming concepts
|
|
|
|
-- description:
|
|
|
|
homepage: https://github.com/thma/LtuPatternFactory#readme
|
|
|
|
license: Apache-2.0
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Thomas Mahler
|
|
|
|
maintainer: thma@apache.org
|
|
|
|
copyright: 2018 Thomas Mahler
|
|
|
|
category: Programming
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
|
|
|
extra-source-files: README.md
|
|
|
|
|
|
|
|
executable LtuPatternFactory
|
|
|
|
hs-source-dirs: src
|
2018-11-17 19:16:39 +03:00
|
|
|
other-modules: AbstractFactory
|
|
|
|
, Adapter
|
2018-10-26 23:33:53 +03:00
|
|
|
, Builder
|
|
|
|
, Composite
|
|
|
|
, Iterator
|
|
|
|
, NullObject
|
|
|
|
, Pipeline
|
|
|
|
, Singleton
|
|
|
|
, Strategy
|
|
|
|
, TemplateMethod
|
|
|
|
, Visitor
|
2018-11-17 19:16:39 +03:00
|
|
|
, Coerce
|
|
|
|
, IdiomBrackets
|
2018-10-26 23:33:53 +03:00
|
|
|
main-is: Main.hs
|
|
|
|
default-language: Haskell2010
|
|
|
|
build-depends: base >= 4.7 && < 5
|
|
|
|
, containers
|
2018-10-31 00:43:47 +03:00
|
|
|
, mtl
|
2018-11-17 19:16:39 +03:00
|
|
|
, aeson
|
|
|
|
, aeson-pretty
|
|
|
|
, text
|
|
|
|
, directory
|
|
|
|
, bytestring
|
2018-11-21 00:24:43 +03:00
|
|
|
, tagged
|