We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bba1177 commit c54a130Copy full SHA for c54a130
.gitignore
@@ -0,0 +1,2 @@
1
+dist/
2
+dist-newstyle/
Setup.hs
+import Distribution.Simple
+main = defaultMain
hspec-formatters-codewars.cabal
@@ -0,0 +1,21 @@
+cabal-version: >=1.10
+
3
+name: hspec-formatters-codewars
4
+version: 0.1.0
5
+synopsis: Hspec formatter for Codewars
6
+homepage: https://githuc.com/codewars/hspec-formatters-codewars
7
+license: MIT
8
+build-type: Simple
9
10
+library
11
+ hs-source-dirs:
12
+ src
13
+ build-depends:
14
+ base ==4.*
15
+ , hspec ==2.*
16
+ , hspec-core ==2.*
17
+ , text ==1.*
18
+ exposed-modules:
19
+ Test.Hspec.Formatters.Codewars
20
+ default-language:
21
+ Haskell2010
0 commit comments