Skip to content

Commit 3792fbe

Browse files
Sönke Hahnsoenkehahn
Sönke Hahn
authored andcommitted
cabal and travis tweaks
1 parent 4d92b77 commit 3792fbe

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
language: haskell
22
ghc: 7.8
3+
4+
script:
5+
- cabal configure --enable-tests --ghc-options=-Werror && cabal build && cabal test
6+
- cabal install --ghc-options=-Werror

Setup.hs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env runhaskell
2+
import Distribution.Simple
3+
main = defaultMain

args-generics.cabal

+18-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,28 @@
11
name: args-generics
22
version: 0.1
3-
cabal-version: >= 1.2
3+
category: Console, System
4+
synopsis: Simple command line argument parsing
5+
description:
6+
"args-generics" tries to make it very simple to create command line
7+
interfaces. Users just specify a simple data type (and derive some type
8+
classes for that type) and "args-generics" creates a command line argument
9+
parser.
410
license: BSD3
511
license-file: LICENSE
612
author: Linh Nguyen, Sönke Hahn
713
copyright: Zalora South East Asia Pte Ltd
814
15+
16+
cabal-version: >= 1.8
917
build-type: Simple
1018

1119
library
1220
hs-source-dirs:
1321
src
1422
ghc-options:
15-
-Wall -threaded -fno-warn-name-shadowing
23+
-Wall -fno-warn-name-shadowing
24+
exposed-modules:
25+
System.Console.Args.Generics
1626
build-depends:
1727
base == 4.*
1828
, generics-sop
@@ -22,15 +32,19 @@ test-suite spec
2232
type:
2333
exitcode-stdio-1.0
2434
hs-source-dirs:
25-
src, test
35+
test
2636
ghc-options:
2737
-Wall -threaded -fno-warn-name-shadowing -O0
2838
main-is:
2939
Spec.hs
3040
build-depends:
3141
base == 4.*
42+
, args-generics
3243
, generics-sop
33-
, optparse-applicative
3444

3545
, hspec
3646
, silently
47+
48+
source-repository head
49+
type: git
50+
location: git://github.com/zalora/args-generics

0 commit comments

Comments
 (0)