Created
May 9, 2015 12:25
-
-
Save starius/6c21000109674dd36bfa to your computer and use it in GitHub Desktop.
luacov-coveralls-scm-0.rockspec pointing to my fork
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
package = "LuaCov-coveralls" | |
version = "scm-0" | |
source = { | |
url = "git://github.com/starius/luacov-coveralls", | |
tag = "master" | |
} | |
description = { | |
summary = "LuaCov reporter for coveralls.io service", | |
detailed = [[ | |
]], | |
homepage = "http://github.com/moteus/luacov-coveralls", | |
license = "MIT/X11" | |
} | |
dependencies = { | |
"lua >= 5.1", | |
-- "luajson", | |
-- "lua-cjson", | |
"dkjson", | |
"luacov > 0.5", | |
"luafilesystem", | |
"lua-path", | |
} | |
build = { | |
type = "builtin", | |
copy_directories = {}, | |
modules = { | |
['luacov.reporter.coveralls' ] = "src/luacov/reporter/coveralls.lua", | |
['luacov.coveralls.CiInfo' ] = "src/luacov/coveralls/CiInfo.lua", | |
['luacov.coveralls.CiRepo' ] = "src/luacov/coveralls/CiRepo.lua", | |
['luacov.coveralls.utils' ] = "src/luacov/coveralls/utils.lua", | |
['luacov.coveralls.repo.appveyor' ] = "src/luacov/coveralls/repo/appveyor.lua", | |
['luacov.coveralls.repo.git' ] = "src/luacov/coveralls/repo/git.lua", | |
}, | |
install = { | |
bin = { | |
["luacov-coveralls"] = "src/bin/luacov-coveralls", | |
} | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment