Skip to content

Commit

Permalink
Prepare release and bump version numbers to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
moteus committed Jan 19, 2015
1 parent 2cde095 commit 6673970
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions rockspecs/luacov-coveralls-0.1.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package = "LuaCov-coveralls"
version = "0.1.1-1"
source = {
url = "git://github.com/moteus/luacov-coveralls",
tag = "v0.1.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",
"luacov > 0.5",
"luafilesystem",
"lua-path",
}
build = {
type = "builtin",
copy_directories = {},
modules = {
['luacov.reporter.coveralls'] = "src/luacov/reporter/coveralls.lua",
['luacov.coveralls.GitRepo' ] = "src/luacov/coveralls/GitRepo.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",
},
install = {
bin = {
["luacov-coveralls"] = "src/bin/luacov-coveralls",
}
},
}

0 comments on commit 6673970

Please sign in to comment.