mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-30 04:07:55 +00:00
22 lines
444 B
Nim
22 lines
444 B
Nim
# Package
|
|
|
|
version = "0.4.0" # 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.0"
|
|
|
|
# For tests
|
|
requires "asynctools"
|
|
|
|
task test, "Runs the test suite.":
|
|
exec "nimble c -y -r tests/tester" |