Skip to content

Commit

Permalink
keplerproject -> lunarmodules
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamhm committed Jul 26, 2022
1 parent 17374dc commit a1aa1fe
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -5,8 +5,8 @@
Coverage analyzer for Lua
</p>
<p>
<a href="https://travis-ci.org/keplerproject/luacov">
<img src="https://travis-ci.org/keplerproject/luacov.svg?branch=master" alt="Build Status">
<a href="https://travis-ci.org/lunarmodules/luacov">
<img src="https://travis-ci.org/lunarmodules/luacov.svg?branch=master" alt="Build Status">
</a>
<a href="https://ci.appveyor.com/project/mpeterv/luacov">
<img src="https://ci.appveyor.com/api/projects/status/dd9gk87cpkqo5s58?svg=true" alt="Windows build status">
Expand All @@ -32,7 +32,7 @@ LuaCov is free software and, like Lua, is released under the
## Download and Installation

LuaCov can be downloaded from its
[Github downloads page](https://github.com/keplerproject/luacov/releases).
[Github downloads page](https://github.com/lunarmodules/luacov/releases).

It can also be installed using Luarocks:

Expand Down Expand Up @@ -116,7 +116,7 @@ LuaCov saves its stats upon normal program termination. If your program is a
daemon -- in other words, if it does not terminate normally -- you can use the
`luacov.tick` module or `tick` configuration option, which periodically saves
the stats file. For example, to run (on Unix systems) LuaCov on
[Xavante](httpsf://keplerproject.github.io/xavante/), just modify the first line
[Xavante](httpsf://lunarmodules.github.io/xavante/), just modify the first line
of `xavante_start.lua` so it reads:

```
Expand Down Expand Up @@ -150,7 +150,7 @@ modules = {
```

For a full list of options, see
[`luacov.defaults` documentation](https://keplerproject.github.io/luacov/doc/modules/luacov.defaults.html).
[`luacov.defaults` documentation](https://lunarmodules.github.io/luacov/doc/modules/luacov.defaults.html).

## Html reporter

Expand Down
10 changes: 5 additions & 5 deletions docs/index.html
Expand Up @@ -26,7 +26,7 @@
<div id="container">

<div id="product">
<div id="product_logo"><a href="https://keplerproject.github.com/luacov">
<div id="product_logo"><a href="https://lunarmodules.github.com/luacov">
<img alt="LuaCov logo" src="logo/luacov-144x144.png" />
</a></div>
<div id="product_name"><big><strong>LuaCov</strong></big></div>
Expand All @@ -50,9 +50,9 @@ <h1>LuaCov</h1>
</ul>
</li>
<li><a href="doc/index.html">Reference</a></li>
<li><a href="https://github.com/keplerproject/luacov">Project</a>
<li><a href="https://github.com/lunarmodules/luacov">Project</a>
<ul>
<li><a href="https://github.com/keplerproject/luacov">Git</a></li>
<li><a href="https://github.com/lunarmodules/luacov">Git</a></li>
</ul>
</li>
<li><a href="license.html">License</a></li>
Expand Down Expand Up @@ -103,7 +103,7 @@ <h2><a name="download"></a>Download</h2>
</p>

<p>
You can also get the code directly from <a href="https://github.com/keplerproject/luacov">the git repo</a>.
You can also get the code directly from <a href="https://github.com/lunarmodules/luacov">the git repo</a>.
</p>

<h2><a name="instructions"></a>Instructions</h2>
Expand Down Expand Up @@ -190,7 +190,7 @@ <h2><a name="instructions"></a>Instructions</h2>
is a daemon -- in other words, if it does not terminate normally -- you
can use the <tt>luacov.tick</tt> module or the <tt>tick</tt> configuration option,
which periodically saves the stats file. For example, to run (on Unix systems)
LuaCov on <a href="https://keplerproject.github.io/xavante/">Xavante</a>,
LuaCov on <a href="https://lunarmodules.github.io/xavante/">Xavante</a>,
just modify the first line of <tt>xavante_start.lua</tt> so it reads:
</p>

Expand Down
6 changes: 3 additions & 3 deletions docs/license.html
Expand Up @@ -12,7 +12,7 @@
<div id="container">

<div id="product">
<div id="product_logo"><a href="https://keplerproject.github.com/luacov">
<div id="product_logo"><a href="https://lunarmodules.github.com/luacov">
<img alt="LuaCov logo" src="logo/luacov-144x144.png" />
</a></div>
<div id="product_name"><big><strong>LuaCov</strong></big></div>
Expand All @@ -36,9 +36,9 @@ <h1>LuaCov</h1>
</ul>
</li>
<li><a href="doc/index.html">Reference</a></li>
<li><a href="https://github.com/keplerproject/luacov">Project</a>
<li><a href="https://github.com/lunarmodules/luacov">Project</a>
<ul>
<li><a href="https://github.com/keplerproject/luacov">Git</a></li>
<li><a href="https://github.com/lunarmodules/luacov">Git</a></li>
</ul>
</li>
<li><strong>License</strong></li>
Expand Down
4 changes: 2 additions & 2 deletions luacov-scm-1.rockspec
@@ -1,7 +1,7 @@
package = "luacov"
version = "scm-1"
source = {
url = "git+https://github.com/keplerproject/luacov.git",
url = "git+https://github.com/lunarmodules/luacov.git",
}
description = {
summary = "Coverage analysis tool for Lua scripts",
Expand All @@ -13,7 +13,7 @@ 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 = "https://keplerproject.github.io/luacov/",
homepage = "https://lunarmodules.github.io/luacov/",
license = "MIT"
}
dependencies = {
Expand Down
2 changes: 1 addition & 1 deletion src/luacov/reporter/html/template.lua
Expand Up @@ -27,7 +27,7 @@ template.HTML_HEADER = [[
template.HTML_FOOTER = [[
</main>
<footer>
Code coverage generated by <a href="https://keplerproject.github.io/luacov/" target="_blank">LuaCov</a> at {{timestamp}}
Code coverage generated by <a href="https://lunarmodules.github.io/luacov/" target="_blank">LuaCov</a> at {{timestamp}}
</footer>
{{script}}
</body>
Expand Down

0 comments on commit a1aa1fe

Please sign in to comment.