Skip to content

Commit

Permalink
Add. rockspecs for version 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
moteus committed Feb 16, 2016
1 parent cbaa1cf commit 27da26a
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions rockspecs/luacov-coveralls-0.2.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package = "LuaCov-coveralls"
version = "0.2.1-1"
source = {
url = "git://github.com/moteus/luacov-coveralls",
tag = "v0.2.1"
}
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",
}
},
}

0 comments on commit 27da26a

Please sign in to comment.