-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitignore-ospath.cabal
More file actions
48 lines (44 loc) · 1.73 KB
/
gitignore-ospath.cabal
File metadata and controls
48 lines (44 loc) · 1.73 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
cabal-version: 3.0
name: gitignore-ospath
version: 0.1.0.2
synopsis: Library for reading .gitignore files and filtering paths
description: Library for reading .gitignore files and filtering paths.
The library works with .gitignore-like formats (e.g., .dockerignore) and uses
'System.OsPath.OsPath' for path handling. Parsing and filtering rules follow the
Git documentation.
homepage: https://github.com/federicotdn/gitignore-ospath
bug-reports: https://github.com/federicotdn/gitignore-ospath/issues
license: Apache-2.0
license-file: LICENSE
author: Federico Tedin
maintainer: federicotedin@gmail.com
category: Development
build-type: Simple
extra-doc-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/federicotdn/gitignore-ospath
common shared
ghc-options: -Wall
default-language: Haskell2010
build-depends: base >=4.14.0.0 && <5
, os-string >=2.0.0 && < 3
, filepath >=1.5.0.0 && < 2
, text >=2.1.0 && < 3
default-extensions: OverloadedStrings
library
import: shared
exposed-modules: Ignore
other-modules: Ignore.Internal
hs-source-dirs: src
test-suite gitignore-ospath-test
import: shared
type: exitcode-stdio-1.0
hs-source-dirs: test
, src
main-is: IgnoreSpec.hs
other-modules: Ignore
, Ignore.Internal
build-depends: base >=4.14.0.0 && <5
, hspec ^>=2.11.16
, gitignore-ospath