-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added development dependency installation and updated README.md to co…
…ver development dependency installation and the spec generator
- Loading branch information
1 parent
2df17be
commit 0a7151b
Showing
3 changed files
with
44 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
luarocks install --server=https://luarocks.org/dev --only-deps dev-dependencies-git-0.rockspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package = 'dev-dependencies' | ||
version = 'git-0' | ||
source = { | ||
url = 'https://github.com/exercism/lua' | ||
} | ||
description = { | ||
summary = 'Development dependencies for the Exercism Lua track.', | ||
homepage = 'https://github.com/exercism/lua/' | ||
} | ||
dependencies = { | ||
'lua >= 5.3', | ||
'busted >= 2.2.0-1', | ||
'dkjson ~> 2.8-1', | ||
'luaformatter' | ||
} | ||
build = { | ||
type = 'builtin', | ||
modules = {} | ||
} |