Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
timmenzies committed May 17, 2021
1 parent 12ba130 commit ce242e1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Here's the structure of this repo showing some of the standard bits:
- `./README.md` : some quick intro notes. Also, good place to show your badges to let folks see, at a glance, what
this is all about. e.g.
- [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4728990.svg)](https://doi.org/10.5281/zenodo.4728990) : code is available, forever, is some long term storage facility;
- [![Build Status](https://travis-ci.com/timm/lunar.svg?branch=main)](https://travis-ci.com/timm/lunar) : code is being
- [![Build Status](https://travis-ci.com/timm/lunatic.svg?branch=main)](https://travis-ci.com/timm/lunatic) : code is being
tested, each time it is committed;
- ![](https://img.shields.io/badge/linting-luac-brown) : each time the code is saved, we lint it for errors.
- and others beside.
Expand Down Expand Up @@ -88,7 +88,7 @@ Git. Enough said. Just do it.

## Open Source Licenses

(To add a license to your repo, add a [LICENSE.md](https://github.com/timm/lunar/blob/main/LICENSE.md)
(To add a license to your repo, add a [LICENSE.md](https://github.com/timm/lunatic/blob/main/LICENSE.md)
file to the root of your repo.)

Open source licenses are licenses that comply with the Open Source Definition—
Expand Down Expand Up @@ -161,12 +161,12 @@ Very handy!

### Unit Testss

(Your repo needs a [.travis.yml](https://github.com/timm/lunar/blob/main/.travis.yml)
(Your repo needs a [.travis.yml](https://github.com/timm/lunatic/blob/main/.travis.yml)
that adds a "post-commit hook" to the repo. This hook runs a test suite each time
the code is committed. This, in turn, updates a badge on your repo that tells people
your code has tests and those tests are working.)

[![Build Status](https://travis-ci.com/timm/lunar.svg?branch=main)](https://travis-ci.com/timm/lunar)
[![Build Status](https://travis-ci.com/timm/lunatic.svg?branch=main)](https://travis-ci.com/timm/lunatic)

To code the test suite, you need something that runs and returns
the shell flag _$?=0_ (if there
Expand All @@ -176,7 +176,7 @@ _$?>0_.

As to how to write the test suite, there are any number of unit test tools.
And its easy to write your own. For example, the test suite here is inside
[./src/eg.moon](https://github.com/timm/lunar/blob/main/src/eg.moon). This code can be called in
[./src/eg.moon](https://github.com/timm/lunatic/blob/main/src/eg.moon). This code can be called in
three ways:

- `cd src; ./eg.moon` which just runs everything;
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# lunar
# lunatic

<a href="http://menzies.us/lunar"><img
<a href="http://menzies.us/lunatic"><img
height=20 src="/docs/assets/img/readthedocs.png"></a>
[![DOI](https://zenodo.org/badge/367550995.svg)](https://zenodo.org/badge/latestdoi/367550995)
[![Build Status](https://travis-ci.com/timm/lunar.svg?branch=main)](https://travis-ci.com/timm/lunar)
[![Build Status](https://travis-ci.com/timm/lunatic.svg?branch=main)](https://travis-ci.com/timm/lunatic)
[![](https://img.shields.io/badge/language-moonscript,bash-orange)](https://moonscript.org/reference/)
![](https://img.shields.io/badge/purpose-ai%20,%20se-blueviolet)
[![](https://img.shields.io/badge/license-mit-lightgrey)](http://github.com/timm/lunar/blob/main/LICENSE.md)
[![](https://img.shields.io/badge/license-mit-lightgrey)](http://github.com/timm/lunatic/blob/main/LICENSE.md)
2 changes: 1 addition & 1 deletion docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repo

<p>{{ site.description | default: site.github.project_tagline }}
<br>&nbsp;<br>
<img src="https://travis-ci.com/timm/lunar.svg?branch=main">
<img src="https://travis-ci.com/timm/lunatic.svg?branch=main">
<a href="https://moonscript.org/reference/"><img src="https://img.shields.io/badge/language-moonscript,bash-orange"></a>
<a href="https://zenodo.org/badge/latestdoi/367550995"><img src="https://zenodo.org/badge/367550995.svg" alt="DOI"></a>
<img src="https://img.shields.io/badge/purpose-ai%20,%20se-blueviolet">
Expand Down

0 comments on commit ce242e1

Please sign in to comment.