Skip to content

Commit

Permalink
Update scm rockspec
Browse files Browse the repository at this point in the history
* git+https protocol over git, more reliable.
* Fix formatting to conform to how LuaRocks serializes rockspecs.
* Use MIT instad of MIT/X11 as license name (spdx license index agrees).
  • Loading branch information
mpeterv committed Apr 29, 2018
1 parent 0b03861 commit 1721f4a
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions luacov-scm-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
package = "LuaCov"
package = "luacov"
version = "scm-1"
source = {
url = "git://github.com/keplerproject/luacov",
url = "git+https://github.com/keplerproject/luacov.git",
}
description = {
summary = "Coverage analysis tool for Lua scripts",
detailed = [[
LuaCov is a simple coverage analysis tool for Lua scripts.
When a Lua script is run with the luacov module, it
generates a stats file. The luacov command-line script then
processes this file generating a report indicating which code
paths were not traversed, which is useful for verifying the
effectiveness of a test suite.
LuaCov is a simple coverage analysis tool for Lua scripts.
When a Lua script is run with the luacov module, it
generates a stats file. The luacov command-line script then
processes this file generating a report indicating which code
paths were not traversed, which is useful for verifying the
effectiveness of a test suite.
]],
homepage = "http://keplerproject.github.io/luacov/",
license = "MIT/X11"
homepage = "https://keplerproject.github.io/luacov/",
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.5"
}
build = {
type = "builtin",
modules = {
["luacov.defaults"] = "src/luacov/defaults.lua",
["luacov"] = "src/luacov.lua",
["luacov.reporter"] = "src/luacov/reporter.lua",
["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
["luacov.runner"] = "src/luacov/runner.lua",
["luacov.stats"] = "src/luacov/stats.lua",
["luacov.tick"] = "src/luacov/tick.lua",
["luacov.hook"] = "src/luacov/hook.lua",
["luacov.util"] = "src/luacov/util.lua"
},
install = {
bin = {
["luacov"] = "src/bin/luacov",
}
}
type = "builtin",
modules = {
luacov = "src/luacov.lua",
["luacov.defaults"] = "src/luacov/defaults.lua",
["luacov.hook"] = "src/luacov/hook.lua",
["luacov.reporter"] = "src/luacov/reporter.lua",
["luacov.reporter.default"] = "src/luacov/reporter/default.lua",
["luacov.runner"] = "src/luacov/runner.lua",
["luacov.stats"] = "src/luacov/stats.lua",
["luacov.tick"] = "src/luacov/tick.lua",
["luacov.util"] = "src/luacov/util.lua"
},
install = {
bin = {
luacov = "src/bin/luacov"
}
}
}

0 comments on commit 1721f4a

Please sign in to comment.