From b6e12638bc6e9e19d1289af468df9ab349758613 Mon Sep 17 00:00:00 2001 From: Will Bradley Date: Sun, 7 Jul 2024 20:09:57 -0600 Subject: [PATCH] updates --- DEVELOPMENT.md | 2 +- README.md | 6 +++--- ace.1 | 10 +++++----- docker-build.sh | 2 +- docker-run.sh | 2 +- roadmap.md | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 2b180a02..1ee3e022 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -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 diff --git a/README.md b/README.md index 4d2dff92..f89996d2 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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). @@ -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) diff --git a/ace.1 b/ace.1 index 39405045..94d30f20 100644 --- a/ace.1 +++ b/ace.1 @@ -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 @@ -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 @@ -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 @@ -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! diff --git a/docker-build.sh b/docker-build.sh index 9390a1f7..0aaca701 100644 --- a/docker-build.sh +++ b/docker-build.sh @@ -1,5 +1,5 @@ #!/bin/bash -IMAGE="acelang/ace" +IMAGE="wbbradley/ace" VERSION="$(cat VERSION)" docker build -t "${IMAGE}:${VERSION}" . diff --git a/docker-run.sh b/docker-run.sh index cd0a6429..2f9b1f64 100644 --- a/docker-run.sh +++ b/docker-run.sh @@ -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" diff --git a/roadmap.md b/roadmap.md index 0bd0d1f8..89bddb57 100644 --- a/roadmap.md +++ b/roadmap.md @@ -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)