blob: a1306c525badd3e63a24120b3498b03385d9a9f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Package
version = "0.4.3" # Be sure to update jester.jesterVer too!
author = "Dominik Picheta"
description = "A sinatra-like web framework for Nim."
license = "MIT"
skipFiles = @["todo.markdown"]
skipDirs = @["tests"]
# Deps
requires "nim >= 0.18.1"
when not defined(windows):
requires "httpbeast >= 0.2.2"
# For tests
requires "https://github.com/timotheecour/asynctools#pr_fix_compilation"
task test, "Runs the test suite.":
exec "nimble c -y -r tests/tester"
|