name: abacate version: 0.0.0.0 cabal-version: >= 1.8 build-type: Simple license: OtherLicense license-file: LICENSE copyright: 2012 Marco Túlio Pimenta Gontijo author: Marco Túlio Pimenta Gontijo maintainer: Marco Túlio Pimenta Gontijo stability: experimental homepage: http://github.com/marcotmarcot/abacate bug-reports: http://github.com/marcotmarcot/abacate/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 . category: Language tested-with: GHC ==7.4.2 extra-source-files: tests/data/environment.feature, tests/data/givenWhenGivenWhen.feature, tests/data/calculator.feature, tests/data/wrongComment.feature, tests/data/complete.feature library exposed-modules: Language.Abacate, Language.Abacate.Types other-modules: Language.Abacate.BNF build-depends: base >= 4 && < 5, text >= 0.11 && < 0.12, parsec >= 3.1 && < 3.2 ghc-options: -Wall Test-Suite abacate-test type: exitcode-stdio-1.0 main-is: abacate.hs hs-source-dirs: tests build-depends: base >= 4 && < 5, text, text >= 0.11 && < 0.12, abacate >= 0.0 && <= 0.1, HUnit >= 1.2 && <= 1.3 ghc-options: -Wall