gdritter repos yaml-dir / 041d793
Added hyphen to library name Getty Ritter 9 years ago
2 changed file(s) with 35 addition(s) and 35 deletion(s). Collapse all Expand all
1 name: yaml-dir
2 version: 0.1.0.0
3 synopsis: Directories as YAML objects
4 description: A small convenience library that reads in directory
5 structures and exposes them as YAML values. Three
6 sets of functions are supplied, depending on whether
7 the files within the directory structure should be
8 treated as containing YAML values, raw text, or
9 possibly either depending on file extension.
10
11 The intent of this package is to allow for
12 configuration or data directories to be used in lieu
13 of monolithic configuration files. The functions
14 contained here can be used to parse either files or
15 directories, and the choice of which to use can be
16 transparent to the application author.
17 license: GPL-3
18 license-file: LICENSE
19 author: Getty Ritter
20 maintainer: gdritter@galois.com
21 copyright: ©2015 Getty Ritter
22 category: Data
23 build-type: Simple
24 cabal-version: >=1.10
25
26 library
27 exposed-modules: Data.YamlDir
28 other-extensions: MultiWayIf, ParallelListComp
29 build-depends: base >=4.7 && <4.8,
30 unordered-containers >= 0.2 && <= 0.3,
31 text >=1.1 && <1.2,
32 yaml >=0.8 && <0.9,
33 directory >=1.2 && <1.3,
34 filepath >= 1.0 && <1.4
35 default-language: Haskell2010
+0
-35
yamldir.cabal less more
1 name: yamldir
2 version: 0.1.0.0
3 synopsis: Directories as YAML objects
4 description: A small convenience library that reads in directory
5 structures and exposes them as YAML values. Three
6 sets of functions are supplied, depending on whether
7 the files within the directory structure should be
8 treated as containing YAML values, raw text, or
9 possibly either depending on file extension.
10
11 The intent of this package is to allow for
12 configuration or data directories to be used in lieu
13 of monolithic configuration files. The functions
14 contained here can be used to parse either files or
15 directories, and the choice of which to use can be
16 transparent to the application author.
17 license: GPL-3
18 license-file: LICENSE
19 author: Getty Ritter
20 maintainer: gdritter@galois.com
21 copyright: ©2015 Getty Ritter
22 category: Data
23 build-type: Simple
24 cabal-version: >=1.10
25
26 library
27 exposed-modules: Data.YamlDir
28 other-extensions: MultiWayIf, ParallelListComp
29 build-depends: base >=4.7 && <4.8,
30 unordered-containers >= 0.2 && <= 0.3,
31 text >=1.1 && <1.2,
32 yaml >=0.8 && <0.9,
33 directory >=1.2 && <1.3,
34 filepath >= 1.0 && <1.4
35 default-language: Haskell2010