-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfury
91 lines (74 loc) · 1.8 KB
/
fury
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# This is a buildfile for Fury or Wrath.
# More information is available at: https://github.com/propensive/wrath/
target anticipation/all
repo propensive/probably
repo propensive/symbolism
project anticipation
module text
compiler scala
include symbolism/core
sources src/text
module opaque
compiler scala
sources src/opaque
module css
compiler scala
include anticipation/text
sources src/css
module url
compiler scala
include anticipation/text
sources src/url
module html
compiler scala
include anticipation/text
sources src/html
module print
compiler scala
include anticipation/text
sources src/print
module http
compiler scala
include anticipation/text
sources src/http
module codec
compiler scala
include prepositional/core
include anticipation/text
sources src/codec
module transport
compiler scala
sources src/transport
module color
compiler scala
sources src/color
module log
compiler scala
include anticipation/text
sources src/log
module path
compiler scala
include anticipation/text
sources src/path
module time
compiler scala
sources src/time
module all
include anticipation/css
include anticipation/html
include anticipation/text
include anticipation/http
include anticipation/path
include anticipation/log
include anticipation/time
include anticipation/print
include anticipation/url
include anticipation/color
include anticipation/transport
include anticipation/codec
include anticipation/opaque
module test
compiler scala
sources src/test
include probably/cli anticipation/all
main anticipation.Tests