-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgherkin.cabal
More file actions
53 lines (47 loc) · 1.63 KB
/
gherkin.cabal
File metadata and controls
53 lines (47 loc) · 1.63 KB
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
name: gherkin
version: 0.0.0.2
cabal-version: >=1.10
build-type: Simple
license: OtherLicense
license-file: LICENSE
copyright: 2012 Marco Túlio Pimenta Gontijo <marcotmarcot@gmail.com>
author: Marco Túlio Pimenta Gontijo <marcotmarcot@gmail.com>
maintainer: Marco Túlio Pimenta Gontijo <marcotmarcot@gmail.com>
stability: experimental
homepage: http://github.com/obsidiansystems/gherkin
bug-reports: http://github.com/obsidiansystems/gherkin/issues
synopsis: Parser for a language similar to Cucumber's Gherkin
description:
Gherkin is the language used by the Cucumber system for Behaviour Driven
Development. This package contains a parser to it, based on its BNF with
minor changes. For more information on Cucumber, check <http://cukes.info>.
This package was formerly called abacate.
category: Language
extra-source-files:
tests/data/calculator.feature
tests/data/complete.feature
tests/data/environment.feature
tests/data/givenWhenGivenWhen.feature
tests/data/wrongComment.feature
library
exposed-modules:
Language.Gherkin
Language.Gherkin.Types
other-modules: Language.Gherkin.BNF
build-depends:
base >=4 && <5
, parsec >=3.1 && <3.2
, text >=0.11 && <2.3
ghc-options: -Wall
default-language: Haskell2010
test-suite gherkin-test
type: exitcode-stdio-1.0
main-is: gherkin.hs
hs-source-dirs: tests
build-depends:
base
, gherkin
, HUnit
, text
ghc-options: -Wall
default-language: Haskell2010