Skip to content

Commit 3b7d360

Browse files
committed
Add .cabal
1 parent 476f6c0 commit 3b7d360

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/dist
2+
/dist-newstyle

Setup.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import Distribution.Simple
2+
main = defaultMain

hspec-codewars.cabal

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
cabal-version: >=1.10
2+
3+
name: hspec-codewars
4+
version: 0.1.0
5+
synopsis: Utility functions for testing on Codewars with Hspec
6+
license: MIT
7+
build-type: Simple
8+
9+
library
10+
hs-source-dirs:
11+
src
12+
build-depends:
13+
base ==4.*
14+
, hspec ==2.*
15+
, HUnit ==1.*
16+
, haskell-src-exts ==1.*
17+
exposed-modules:
18+
Test.Hspec.Codewars
19+
default-language:
20+
Haskell2010

0 commit comments

Comments
 (0)