diff --git a/LICENSE b/LICENSE index 4d43160..5a116f5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2014 Alexey Melnichuk +Copyright (c) 2014-2021 Alexey Melnichuk Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/rockspecs/luacov-coveralls-0.2.3-1.rockspec b/rockspecs/luacov-coveralls-0.2.3-1.rockspec new file mode 100644 index 0000000..eeebb7e --- /dev/null +++ b/rockspecs/luacov-coveralls-0.2.3-1.rockspec @@ -0,0 +1,39 @@ +package = "LuaCov-coveralls" +version = "0.2.3-1" +source = { + url = "git://github.com/moteus/luacov-coveralls", + tag = "v0.2.3" +} +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", + } + }, +}