diff --git a/.travis.yml b/.travis.yml
index ab2634a1..f3536358 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,7 +15,7 @@ script:
- make -s rescue
- make clean self
- make clean self
- - git clone --depth=1 git://github.com/fasterthanlime/sam.git
+ - git clone --depth=1 git://github.com/ooc-lang/sam.git
- (cd sam && rock --quiet sam.use)
- sam test rock.use
diff --git a/BOOTSTRAP b/BOOTSTRAP
index 78a8d2eb..a0deec5a 100644
--- a/BOOTSTRAP
+++ b/BOOTSTRAP
@@ -1,4 +1,4 @@
It looks like you don't have a set of C sources rock can bootstrap from.
Try running `make rescue`, or when everything else fails, get help on IRC
-and/or open an issue here: https://github.com/fasterthanlime/rock/issues
+and/or open an issue here: https://github.com/ooc-lang/rock/issues
diff --git a/Makefile b/Makefile
index 3f965087..3674f1fa 100644
--- a/Makefile
+++ b/Makefile
@@ -28,8 +28,8 @@ all: bootstrap
# Regenerate NagaQueen.c from the greg grammar
# you need ../nagaqueen and greg to be in your path
#
-# http://github.com/fasterthanlime/nagaqueen
-# http://github.com/fasterthanlime/greg
+# http://github.com/ooc-lang/nagaqueen
+# http://github.com/ooc-lang/greg
grammar:
$(PARSER_GEN) ../nagaqueen/grammar/nagaqueen.leg > $(NQ_PATH)
diff --git a/README.md b/README.md
index a739dfc5..c0f89fe3 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,9 @@
-[![Build Status](https://travis-ci.org/fasterthanlime/rock.svg?branch=master)](https://travis-ci.org/fasterthanlime/rock)
+[![Build Status](https://travis-ci.org/ooc-lang/rock.svg?branch=master)](https://travis-ci.org/ooc-lang/rock)
# rock
* [ooc](http://ooc-lang.org/)
- * [rock](https://github.com/fasterthanlime/rock)
+ * [rock](https://github.com/ooc-lang/rock)
rock is an ooc compiler written in ooc - in other words, it's
where things begin to become really exciting.
@@ -37,7 +37,7 @@ make sure it can find the SDK!
See the `INSTALL` file
To switch to the most recent git, read
-[ReleaseToGit](https://github.com/fasterthanlime/rock/blob/master/docs/workflow/ReleaseToGit.md)
+[ReleaseToGit](https://github.com/ooc-lang/rock/blob/master/docs/workflow/ReleaseToGit.md)
## License
diff --git a/docs/workflow/ReleaseToGit.md b/docs/workflow/ReleaseToGit.md
index 2957c6f6..b4fe4fe3 100644
--- a/docs/workflow/ReleaseToGit.md
+++ b/docs/workflow/ReleaseToGit.md
@@ -6,7 +6,7 @@ Single-line Method
Giving Rock a run for its money is now quicker and easier than ever. Run the following command in your shell, and life is good. Tested and working on OS X and Ubuntu. Should work on any POSIX compliant system.
-``bash -c "`curl -L http://github.com/fasterthanlime/rock/raw/master/utils/ooc-install.sh`"``
+``bash -c "`curl -L http://github.com/ooc-lang/rock/raw/master/utils/ooc-install.sh`"``
So you've tried rock..
@@ -25,7 +25,7 @@ Quick way
---------
1. Extract release, cd, make
- 2. git clone git://github.com/fasterthanlime/rock.git && cd rock
+ 2. git clone git://github.com/ooc-lang/rock.git && cd rock
3. ROCK_DIST=. OOC=../rock-x.y.z*/bin/rock make self
And you're done! Of course, rock-x.y.z should be the number of the
@@ -40,9 +40,9 @@ Long way with detailed explanations
Rock is a self-hosting compiler, each release of rock is used to build the next release of rock. To use the git version, simply follow these steps (specific steps may vary depending on your OS):
-1. Check that you have a stable release of rock (0.9.1 as of 8/05/2010), you can download the release from here.
+1. Check that you have a stable release of rock (0.9.1 as of 8/05/2010), you can download the release from here.
-2. Let's assume that you unpackaged the folder to /usr/share/rock-0.9.1. "cd /usr/share/" and clone the latest development copy "git clone git://github.com/fasterthanlime/rock.git"
+2. Let's assume that you unpackaged the folder to /usr/share/rock-0.9.1. "cd /usr/share/" and clone the latest development copy "git clone git://github.com/ooc-lang/rock.git"
3. "cd rock/", inside this directory execute "OOC=../rock-0.9.1/bin/rock ROCK_DIST=. make self". This will build the latest binary for rock using the stable release. This is self-hosting in action :)
diff --git a/extensions/fancy-backtrace/Makefile b/extensions/fancy-backtrace/Makefile
index 0eac2230..e6b47057 100644
--- a/extensions/fancy-backtrace/Makefile
+++ b/extensions/fancy-backtrace/Makefile
@@ -26,7 +26,7 @@ else ifeq ($(MYOS),)
ifeq (${OS}, Windows_NT)
ARCH=win
else
- $(error "OS ${OS} unrecognized - please open an issue at https://github.com/fasterthanlime/rock/issues")
+ $(error "OS ${OS} unrecognized - please open an issue at https://github.com/ooc-lang/rock/issues")
endif
endif
diff --git a/rock.use b/rock.use
index a2d43f02..17ff7e02 100644
--- a/rock.use
+++ b/rock.use
@@ -1,6 +1,6 @@
Name: rock
Version: head
-Origin: git://github.com/fasterthanlime/rock.git
+Origin: git://github.com/ooc-lang/rock.git
Description: ooc compiler written in ooc
SourcePath: source
diff --git a/sdk/io/native/FileWin32.ooc b/sdk/io/native/FileWin32.ooc
index c061b864..248fde9c 100644
--- a/sdk/io/native/FileWin32.ooc
+++ b/sdk/io/native/FileWin32.ooc
@@ -163,7 +163,7 @@ version(windows) {
// For now, `executable?` and `setExecutable` are enough
// to set basic permissions when creating files on *nix.
// See discussion on this commit for more details:
- // https://github.com/fasterthanlime/rock/commit/c6b8e9a23079451f2d6c6964cace8ff786f4d434
+ // https://github.com/ooc-lang/rock/commit/c6b8e9a23079451f2d6c6964cace8ff786f4d434
false
}
diff --git a/source/rock/frontend/drivers/CMakeDriver.ooc b/source/rock/frontend/drivers/CMakeDriver.ooc
index ed15524a..953f0658 100644
--- a/source/rock/frontend/drivers/CMakeDriver.ooc
+++ b/source/rock/frontend/drivers/CMakeDriver.ooc
@@ -56,7 +56,7 @@ CMakefileWriter: class extends MetaDriverWriter {
writePrelude: func {
tw writeln("# CMakeLists.txt generated by rock, the ooc compiler written in ooc")
- tw writeln("# See https://github.com/fasterthanlime/rock and http://ooc-lang.org")
+ tw writeln("# See https://github.com/ooc-lang/rock and http://ooc-lang.org")
tw nl()
}
diff --git a/source/rock/frontend/drivers/MakeDriver.ooc b/source/rock/frontend/drivers/MakeDriver.ooc
index 8f318b28..972d8db2 100644
--- a/source/rock/frontend/drivers/MakeDriver.ooc
+++ b/source/rock/frontend/drivers/MakeDriver.ooc
@@ -56,7 +56,7 @@ MakefileWriter: class extends MetaDriverWriter {
writePrelude: func {
tw writeln("# Makefile generated by rock, the ooc compiler written in ooc")
- tw writeln("# See https://github.com/fasterthanlime/rock and http://ooc-lang.org")
+ tw writeln("# See https://github.com/ooc-lang/rock and http://ooc-lang.org")
tw nl()
}
diff --git a/source/rock/middle/Match.ooc b/source/rock/middle/Match.ooc
index 44fe960e..76d39301 100644
--- a/source/rock/middle/Match.ooc
+++ b/source/rock/middle/Match.ooc
@@ -106,7 +106,7 @@ Match: class extends Expression {
// As is, this code might unwrap more than necessary (e.g. a literal)
// We need a better way to determine whether an expression will have
// side effects when evaluating, but that's beyond the scope of
- // that issue: https://github.com/fasterthanlime/rock/issues/615
+ // that issue: https://github.com/ooc-lang/rock/issues/615
vdfe := VariableDecl new(null, generateTempName("matchExpr"), expr, expr token)
if (trail addBeforeInScope(this, vdfe)) {
expr = VariableAccess new(vdfe, vdfe token)
diff --git a/test/README.md b/test/README.md
index 1987f9f9..3f6806d6 100644
--- a/test/README.md
+++ b/test/README.md
@@ -1,6 +1,6 @@
-[sam]: https://github.com/fasterthanlime/sam
-[travis]: https://travis-ci.org/fasterthanlime/rock/builds
+[sam]: https://github.com/ooc-lang/sam
+[travis]: https://travis-ci.org/ooc-lang/rock/builds
## about rock tests
diff --git a/test/compiler/arrays/return-array.ooc b/test/compiler/arrays/return-array.ooc
index 3c79ad5c..170f2585 100644
--- a/test/compiler/arrays/return-array.ooc
+++ b/test/compiler/arrays/return-array.ooc
@@ -1,5 +1,5 @@
-// Test case for https://github.com/fasterthanlime/rock/issues/348
+// Test case for https://github.com/ooc-lang/rock/issues/348
f: func -> Int[] {
[1, 2, 3, 4]
diff --git a/test/compiler/arrays/return-array2.ooc b/test/compiler/arrays/return-array2.ooc
index 7ce738b1..fbeef190 100644
--- a/test/compiler/arrays/return-array2.ooc
+++ b/test/compiler/arrays/return-array2.ooc
@@ -1,5 +1,5 @@
-// Test case for https://github.com/fasterthanlime/rock/issues/795
+// Test case for https://github.com/ooc-lang/rock/issues/795
//! shouldfail
diff --git a/test/compiler/classes/eventually-final.ooc b/test/compiler/classes/eventually-final.ooc
index 69783aa5..f3e8b2f2 100644
--- a/test/compiler/classes/eventually-final.ooc
+++ b/test/compiler/classes/eventually-final.ooc
@@ -1,5 +1,5 @@
-// cf. https://github.com/fasterthanlime/rock/pull/853
+// cf. https://github.com/ooc-lang/rock/pull/853
describe("methods can become final in subclasses (should compile)", ||
Second new() test()
diff --git a/test/compiler/closures/nest-up-and-away.ooc b/test/compiler/closures/nest-up-and-away.ooc
index aed9e97a..8af164fb 100644
--- a/test/compiler/closures/nest-up-and-away.ooc
+++ b/test/compiler/closures/nest-up-and-away.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/907
+// Test for https://github.com/ooc-lang/rock/issues/907
finalValue: Int = 42
diff --git a/test/compiler/closures/nested-closures.ooc b/test/compiler/closures/nested-closures.ooc
index 6e5cfb43..1506e8f9 100644
--- a/test/compiler/closures/nested-closures.ooc
+++ b/test/compiler/closures/nested-closures.ooc
@@ -1,5 +1,5 @@
-// cf. https://github.com/fasterthanlime/rock/issues/882
+// cf. https://github.com/ooc-lang/rock/issues/882
describe("nested closures should be able to modify outer variable by ref", ||
g := (1, 0) as Tuple
diff --git a/test/compiler/closures/non-acs-in-closure.ooc b/test/compiler/closures/non-acs-in-closure.ooc
index 03ab5f62..8ad80796 100644
--- a/test/compiler/closures/non-acs-in-closure.ooc
+++ b/test/compiler/closures/non-acs-in-closure.ooc
@@ -1,5 +1,5 @@
-// regression test for: https://github.com/fasterthanlime/rock/issues/885
+// regression test for: https://github.com/ooc-lang/rock/issues/885
describe("should call static function from closure", ||
f := func {
diff --git a/test/compiler/covers/cover-templates-generic-function.ooc b/test/compiler/covers/cover-templates-generic-function.ooc
index 5befbaee..4beaba21 100644
--- a/test/compiler/covers/cover-templates-generic-function.ooc
+++ b/test/compiler/covers/cover-templates-generic-function.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/626
+// Test for https://github.com/ooc-lang/rock/issues/626
result := 0
diff --git a/test/compiler/covers/cover-templates-generic-function2.ooc b/test/compiler/covers/cover-templates-generic-function2.ooc
index c129aa54..3aba806c 100644
--- a/test/compiler/covers/cover-templates-generic-function2.ooc
+++ b/test/compiler/covers/cover-templates-generic-function2.ooc
@@ -1,7 +1,7 @@
//! shouldfail
-// Test for https://github.com/fasterthanlime/rock/issues/626
+// Test for https://github.com/ooc-lang/rock/issues/626
result := 0
diff --git a/test/compiler/covers/cover-templates-generic-function3.ooc b/test/compiler/covers/cover-templates-generic-function3.ooc
index fda58738..61a5169a 100644
--- a/test/compiler/covers/cover-templates-generic-function3.ooc
+++ b/test/compiler/covers/cover-templates-generic-function3.ooc
@@ -1,7 +1,7 @@
//! shouldfail
-// Test for https://github.com/fasterthanlime/rock/issues/626
+// Test for https://github.com/ooc-lang/rock/issues/626
result := 0
diff --git a/test/compiler/covers/cover-templates-string-interpolation.ooc b/test/compiler/covers/cover-templates-string-interpolation.ooc
index 93995cd7..a1f53228 100644
--- a/test/compiler/covers/cover-templates-string-interpolation.ooc
+++ b/test/compiler/covers/cover-templates-string-interpolation.ooc
@@ -1,5 +1,5 @@
-// test for https://github.com/fasterthanlime/rock/issues/886
+// test for https://github.com/ooc-lang/rock/issues/886
formatInt: func (i: Int) -> String {
"~#{i}"
diff --git a/test/compiler/covers/cover-templates2.ooc b/test/compiler/covers/cover-templates2.ooc
index e0d7310e..34de950e 100644
--- a/test/compiler/covers/cover-templates2.ooc
+++ b/test/compiler/covers/cover-templates2.ooc
@@ -1,7 +1,7 @@
// this test triggers a particular bug in old versions of rock
// where resolve orders is so that things don't get resolved properly.
-// see https://github.com/fasterthanlime/rock/issues/887
+// see https://github.com/ooc-lang/rock/issues/887
assignDone := false
pleaseDone := false
diff --git a/test/compiler/covers/pointer-comparison.ooc b/test/compiler/covers/pointer-comparison.ooc
index 1f864abc..115a45eb 100644
--- a/test/compiler/covers/pointer-comparison.ooc
+++ b/test/compiler/covers/pointer-comparison.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/783
+// Test for https://github.com/ooc-lang/rock/issues/783
describe("it should be legal to compare the address of structs", ||
s := (1, 5) as S
diff --git a/test/compiler/functions/call-combo1.ooc b/test/compiler/functions/call-combo1.ooc
index 9c80b2e4..3522b969 100644
--- a/test/compiler/functions/call-combo1.ooc
+++ b/test/compiler/functions/call-combo1.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/pull/901
+// Test for https://github.com/ooc-lang/rock/pull/901
describe("bar test()(1) should be recognized properly", ||
bar := Foo new()
diff --git a/test/compiler/functions/call-combo2.ooc b/test/compiler/functions/call-combo2.ooc
index 13d66eac..e7586794 100644
--- a/test/compiler/functions/call-combo2.ooc
+++ b/test/compiler/functions/call-combo2.ooc
@@ -1,7 +1,7 @@
//!shouldfail
-// Test for https://github.com/fasterthanlime/rock/pull/901
+// Test for https://github.com/ooc-lang/rock/pull/901
describe("bar test()() should be a compile error (args mismatch)", ||
bar := Foo new()
diff --git a/test/compiler/functions/segfault-on-build.ooc b/test/compiler/functions/segfault-on-build.ooc
index 54c2ecaf..54535c64 100644
--- a/test/compiler/functions/segfault-on-build.ooc
+++ b/test/compiler/functions/segfault-on-build.ooc
@@ -2,7 +2,7 @@
//! shouldfail
-// Test for https://github.com/fasterthanlime/rock/issues/811
+// Test for https://github.com/ooc-lang/rock/issues/811
Foo: class {
done: Bool { get {
diff --git a/test/compiler/functions/unqualified-static-first-class-call.ooc b/test/compiler/functions/unqualified-static-first-class-call.ooc
index 27400c9d..224596ee 100644
--- a/test/compiler/functions/unqualified-static-first-class-call.ooc
+++ b/test/compiler/functions/unqualified-static-first-class-call.ooc
@@ -1,5 +1,5 @@
-// regression test for: https://github.com/fasterthanlime/rock/issues/635
+// regression test for: https://github.com/ooc-lang/rock/issues/635
// "Can't call static first-class functions without the class name."
// Don't use sam-assert, otherwise we hit #885
diff --git a/test/compiler/generics/casting-to-generic.ooc b/test/compiler/generics/casting-to-generic.ooc
index d107721a..3f09533e 100644
--- a/test/compiler/generics/casting-to-generic.ooc
+++ b/test/compiler/generics/casting-to-generic.ooc
@@ -1,7 +1,7 @@
//! shouldfail
-// Test for https://github.com/fasterthanlime/rock/issues/891
+// Test for https://github.com/ooc-lang/rock/issues/891
Peeker: class {
inner: Object
diff --git a/test/compiler/generics/generic-member.ooc b/test/compiler/generics/generic-member.ooc
index e65e78d8..bfb40fd3 100644
--- a/test/compiler/generics/generic-member.ooc
+++ b/test/compiler/generics/generic-member.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/889
+// Test for https://github.com/ooc-lang/rock/issues/889
describe("accessing generic member should not require a cast", ||
g := Gift new("hi")
diff --git a/test/compiler/generics/generic-member2.ooc b/test/compiler/generics/generic-member2.ooc
index 4d477abe..13449fb0 100644
--- a/test/compiler/generics/generic-member2.ooc
+++ b/test/compiler/generics/generic-member2.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/889
+// Test for https://github.com/ooc-lang/rock/issues/889
describe("should be able to assign, plus-assign, access generic member", ||
g := Gift new(42)
diff --git a/test/compiler/generics/generic-member3.ooc b/test/compiler/generics/generic-member3.ooc
index 88dd17fb..b95c2212 100644
--- a/test/compiler/generics/generic-member3.ooc
+++ b/test/compiler/generics/generic-member3.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/889
+// Test for https://github.com/ooc-lang/rock/issues/889
import structs/ArrayList
diff --git a/test/compiler/generics/iterate-hashmap-keys.ooc b/test/compiler/generics/iterate-hashmap-keys.ooc
index 79714435..b76bb0d3 100644
--- a/test/compiler/generics/iterate-hashmap-keys.ooc
+++ b/test/compiler/generics/iterate-hashmap-keys.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/361
+// Test for https://github.com/ooc-lang/rock/issues/361
import structs/HashMap
diff --git a/test/compiler/generics/match-generic-types.ooc b/test/compiler/generics/match-generic-types.ooc
index b8631f2a..2dc2c0bd 100644
--- a/test/compiler/generics/match-generic-types.ooc
+++ b/test/compiler/generics/match-generic-types.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/802
+// Test for https://github.com/ooc-lang/rock/issues/802
getType: func (t: T) -> String {
match t {
diff --git a/test/compiler/generics/pass-invalid-generic-arg.ooc b/test/compiler/generics/pass-invalid-generic-arg.ooc
index e9e767ba..2e93d63a 100644
--- a/test/compiler/generics/pass-invalid-generic-arg.ooc
+++ b/test/compiler/generics/pass-invalid-generic-arg.ooc
@@ -3,7 +3,7 @@
import structs/ArrayList
-// Test case for https://github.com/fasterthanlime/rock/issues/842
+// Test case for https://github.com/ooc-lang/rock/issues/842
describe("should refuse invalid generic assignment", ||
data: ArrayList>
diff --git a/test/compiler/generics/reconcile-1.ooc b/test/compiler/generics/reconcile-1.ooc
index a71f2b4e..a45f6ff9 100644
--- a/test/compiler/generics/reconcile-1.ooc
+++ b/test/compiler/generics/reconcile-1.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/825
+// Test for https://github.com/ooc-lang/rock/issues/825
Foo: class { init: func }
Bar: class extends Foo { init: super func }
diff --git a/test/compiler/generics/reconcile-not-1.ooc b/test/compiler/generics/reconcile-not-1.ooc
index 38691e08..166a49e1 100644
--- a/test/compiler/generics/reconcile-not-1.ooc
+++ b/test/compiler/generics/reconcile-not-1.ooc
@@ -1,7 +1,7 @@
//! shouldfail
-// Test for https://github.com/fasterthanlime/rock/issues/825
+// Test for https://github.com/ooc-lang/rock/issues/825
Foo: class { init: func }
diff --git a/test/compiler/generics/unwrap-with-return-args.ooc b/test/compiler/generics/unwrap-with-return-args.ooc
index 66303904..d2e9811f 100644
--- a/test/compiler/generics/unwrap-with-return-args.ooc
+++ b/test/compiler/generics/unwrap-with-return-args.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/890
+// Test for https://github.com/ooc-lang/rock/issues/890
Ditto: class {
s: String
diff --git a/test/compiler/generics/use-owner-not-this.ooc b/test/compiler/generics/use-owner-not-this.ooc
index ab76c798..c3de9e20 100644
--- a/test/compiler/generics/use-owner-not-this.ooc
+++ b/test/compiler/generics/use-owner-not-this.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/346
+// Test for https://github.com/ooc-lang/rock/issues/346
import structs/HashBag
diff --git a/test/compiler/generics/use-owner-not-this2.ooc b/test/compiler/generics/use-owner-not-this2.ooc
index 8ebaf16d..4d205e9c 100644
--- a/test/compiler/generics/use-owner-not-this2.ooc
+++ b/test/compiler/generics/use-owner-not-this2.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/346
+// Test for https://github.com/ooc-lang/rock/issues/346
import structs/HashBag
diff --git a/test/compiler/operators/overload-order.ooc b/test/compiler/operators/overload-order.ooc
index 02a67ba3..b81ad103 100644
--- a/test/compiler/operators/overload-order.ooc
+++ b/test/compiler/operators/overload-order.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/780
+// Test for https://github.com/ooc-lang/rock/issues/780
describe("operator overload order should not matter", ||
p := Point2D new(2, 3)
diff --git a/test/compiler/pointers/references-accessing.ooc b/test/compiler/pointers/references-accessing.ooc
index 1191edfd..3398b218 100644
--- a/test/compiler/pointers/references-accessing.ooc
+++ b/test/compiler/pointers/references-accessing.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/595
+// Test for https://github.com/ooc-lang/rock/issues/595
describe("accessing references inside closures should work", ||
a : Int@ = gc_malloc(Int size)
diff --git a/test/compiler/pointers/references-assigning.ooc b/test/compiler/pointers/references-assigning.ooc
index faf2f12a..33b5fa38 100644
--- a/test/compiler/pointers/references-assigning.ooc
+++ b/test/compiler/pointers/references-assigning.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/595
+// Test for https://github.com/ooc-lang/rock/issues/595
describe("accessing & assigning references inside closures should work", ||
alamanthus : Int@ = gc_malloc(Int size)
diff --git a/test/compiler/properties/call-properties.ooc b/test/compiler/properties/call-properties.ooc
index 07ab80ff..72029770 100644
--- a/test/compiler/properties/call-properties.ooc
+++ b/test/compiler/properties/call-properties.ooc
@@ -1,7 +1,7 @@
//! shouldfail
-// Test for https://github.com/fasterthanlime/rock/issues/860
+// Test for https://github.com/ooc-lang/rock/issues/860
Foo: class {
b ::= 1
diff --git a/test/compiler/properties/no-generic-initialization-for-properties.ooc b/test/compiler/properties/no-generic-initialization-for-properties.ooc
index 01f57b48..beec0be1 100644
--- a/test/compiler/properties/no-generic-initialization-for-properties.ooc
+++ b/test/compiler/properties/no-generic-initialization-for-properties.ooc
@@ -1,6 +1,6 @@
-// cf. https://github.com/fasterthanlime/rock/issues/840
-// and https://github.com/fasterthanlime/rock/pull/854
+// cf. https://github.com/ooc-lang/rock/issues/840
+// and https://github.com/ooc-lang/rock/pull/854
describe("generic properties should work", ||
tbar := Foo new()
diff --git a/test/compiler/tuples/tuple-multidecl-precedence.ooc b/test/compiler/tuples/tuple-multidecl-precedence.ooc
index 4c94b721..771790bc 100644
--- a/test/compiler/tuples/tuple-multidecl-precedence.ooc
+++ b/test/compiler/tuples/tuple-multidecl-precedence.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/issues/903
+// Test for https://github.com/ooc-lang/rock/issues/903
describe("tuple variable decls should have precedence over members", ||
bar := Foo new(1337)
diff --git a/test/compiler/variables/extern-const-reference.ooc b/test/compiler/variables/extern-const-reference.ooc
index 8ad5122b..31ce4453 100644
--- a/test/compiler/variables/extern-const-reference.ooc
+++ b/test/compiler/variables/extern-const-reference.ooc
@@ -1,5 +1,5 @@
-// Test for https://github.com/fasterthanlime/rock/pull/897
+// Test for https://github.com/ooc-lang/rock/pull/897
include ./constnum
diff --git a/utils/ooc-install.sh b/utils/ooc-install.sh
index 587dcb10..16ef9e3f 100755
--- a/utils/ooc-install.sh
+++ b/utils/ooc-install.sh
@@ -57,7 +57,7 @@ function do_install {
rm -rf "$f"
fi
- git clone "http://github.com/fasterthanlime/rock.git" "$f"
+ git clone "http://github.com/ooc-lang/rock.git" "$f"
export ROCK_DIST="$f"
cd "$f"