Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wbbradley committed Jul 8, 2024
1 parent 3625374 commit b6e1263
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ You will need Docker for the supported Linux test path.
#### Plugins

* If you use vim, take a look at
[vim-ace](https://github.com/acelang/vim-ace).
[vim-ace](https://github.com/wbbradley/vim-ace).


## Development workflow
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Ace Language


[![Tests](https://github.com/acelang/ace/workflows/Tests/badge.svg)](https://github.com/acelang/ace/actions?query=workflow%3ATests)
[![Tests](https://github.com/wbbradley/ace/workflows/Tests/badge.svg)](https://github.com/wbbradley/ace/actions?query=workflow%3ATests)

## Fundamentals

Expand All @@ -14,7 +14,7 @@ type-classes to allow ad-hoc polymorphism, `with` control-flow semantics for bra
To play with Ace in Docker, try this.

```
git clone https://github.com/acelang/ace.git
git clone https://github.com/wbbradley/ace.git
cd ace
# Get a docker image set up ready to run a build (assumes Docker is running).
Expand Down Expand Up @@ -205,4 +205,4 @@ The best way to learn more at this time is to read through the
TODO: struct types do not support pattern matching. proposed solution: eliminate
structs, but add names to newtypes.

[![HitCount](http://hits.dwyl.com/acelang/ace.svg)](http://hits.dwyl.com/acelang/ace)
[![HitCount](http://hits.dwyl.com/wbbradley/ace.svg)](http://hits.dwyl.com/wbbradley/ace)
10 changes: 5 additions & 5 deletions ace.1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ace [\fBtest\fR] \-\- run unit tests
.SH DESCRIPTION
.na
Ace is a general purpose programming language.
The source code is available at \fBhttps://github.com/acelang/ace\fR.
The source code is available at \fBhttps://github.com/wbbradley/ace\fR.
.P
ace
.B run
Expand Down Expand Up @@ -51,11 +51,11 @@ When searching for the specified \fIprogram\fR, \fBace\fR will look in the curre
.br
ACE_ROOT=\fI/usr/local/share/ace\fR
Should point to the base directory for standard runtime and library.
If
If
.B ACE_PATH
is not set, it will default to
.B $ACE_ROOT/lib
\&. If
\&. If
.B ACE_RUNTIME
is not set, it will default to "
.B $ACE_ROOT/runtime
Expand All @@ -65,7 +65,7 @@ is not set, it will default to "
ACE_PATH=\fI/usr/local/share/ace/lib\fR
A colon-separated list of directories to search for imported libraries.
Libraries are imported with the `import` keyword.
The `lib/std.ace` library is called the prelude and is automatically imported unless
The `lib/std.ace` library is called the prelude and is automatically imported unless
.B NO_PRELUDE
is given. Setting this variable overrides the
.B $ACE_ROOT/lib
Expand Down Expand Up @@ -140,5 +140,5 @@ SOFTWARE.
Note that this version of Ace is pre-release quality software. No guarantees \
are given regarding changes to protocols, language grammar, semantics, or \
standard library interface. Bug reports are greatly appreciated. Report bugs to \
the Ace GitHub site. \fBhttps://github.com/acelang/ace/issues\fR. Pull Requests \
the Ace GitHub site. \fBhttps://github.com/wbbradley/ace/issues\fR. Pull Requests \
are welcome!
2 changes: 1 addition & 1 deletion docker-build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
IMAGE="acelang/ace"
IMAGE="wbbradley/ace"
VERSION="$(cat VERSION)"

docker build -t "${IMAGE}:${VERSION}" .
Expand Down
2 changes: 1 addition & 1 deletion docker-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set +x
# Running docker tests by default, add a parameter to execute that command
# instead of the tests.

IMAGE="acelang/ace"
IMAGE="wbbradley/ace"
VERSION="$(cat VERSION)"
NAME="ace-build"

Expand Down
2 changes: 1 addition & 1 deletion roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
- [ ] deriving Ord
- [ ] error on unused imports
- [ ] allow nested modules (ie: net/http)
- [ ] design/implement some form of [functional dependencies](https://github.com/acelang/reference-docs/blob/master/docs/2000-jones-functional-dependencies.pdf) for mptc sanity
- [ ] design/implement some form of [functional dependencies](https://github.com/wbbradley/reference-docs/blob/master/docs/2000-jones-functional-dependencies.pdf) for mptc sanity
- [ ] unused variable check (variables that only appear on lhs)
- [ ] higher-kinded type functions to allow for pulling types from other types for the purpose of mapping between types (for example to_with :: Either a b -> WithElseResource resource error)

Expand Down

0 comments on commit b6e1263

Please sign in to comment.