forked from tippenein/countable-inflections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
countable-inflections.cabal
55 lines (50 loc) · 1.49 KB
/
countable-inflections.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: countable-inflections
version: 0.3.0
synopsis: Countable Text Inflections
description:
Provides methods for singularizing and pluralizing text.
The library is based on Rails' inflections.
license: MIT
license-file: LICENSE.md
author: Brady Ouren <brady@andand.co>
homepage: https://github.com/tippenein/countable-inflections
bug-reports: https://github.com/tippenein/countable-inflections/issues
maintainer: Brady Ouren <brady@andand.co>
copyright: 2016 Brady Ouren
category: Text
build-type: Simple
cabal-version: >=1.10
extra-source-files: CHANGELOG.md
, README.md
source-repository head
type: git
location: https://github.com/tippenein/countable-inflections.git
flag dev
description: Turn on development settings.
manual: True
default: False
library
exposed-modules: Text.Countable
other-modules: Text.Countable.Data
ghc-options: -Wall
build-depends:
base
, exceptions
, text
, regex-pcre-builtin
, pcre-utils
, bytestring
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends:
countable-inflections
, QuickCheck
, base
, hspec
, text
ghc-options: -Wall
default-language: Haskell2010
other-modules: Text.CountableSpec