From be24118a9c35b6b2c15abc5e5cf2e73a7569e53d Mon Sep 17 00:00:00 2001 From: James Dinsdale Date: Thu, 6 Jul 2017 01:02:01 +0100 Subject: [PATCH] Update repository URLs --- README.md | 4 ++-- contributing.md | 22 +++++++++++----------- src/commands/init.zsh | 2 +- src/reports/html.zsh | 2 +- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index c70e7d8..dafedfb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ZUnit is a powerful unit testing framework for ZSH ## Installation -> **WARNING**: Although the majority of ZUnit's functionality works as expected, it is in the early stages of development, and as such bugs are likely to be present. Please continue with caution, and [report any issues](https://github.com/molovo/zunit/issues/new) you may have. +> **WARNING**: Although the majority of ZUnit's functionality works as expected, it is in the early stages of development, and as such bugs are likely to be present. Please continue with caution, and [report any issues](https://github.com/zunit-zsh/zunit/issues/new) you may have. ### [Zulu](https://github.com/zulu-zsh/zulu) @@ -31,7 +31,7 @@ brew install zunit-zsh/zunit/zunit ### Manual ```sh -git clone https://github.com/molovo/zunit +git clone https://github.com/zunit-zsh/zunit cd ./zunit ./build.zsh chmod u+x ./zunit diff --git a/contributing.md b/contributing.md index 3d1a654..aaef2bd 100644 --- a/contributing.md +++ b/contributing.md @@ -10,7 +10,7 @@ Please note that this project is released with a [Contributor Code of Conduct](c As a user of ZUnit you're the perfect candidate to help us improve our documentation. Typo corrections, error fixes, better explanations, more examples, etc. Open issues for things that could be improved. Anything. Even improvements to this document. -Use the [`docs` label](https://github.com/molovo/zunit/labels/docs) to find suggestions for what we'd love to see more documentation on. +Use the [`docs` label](https://github.com/zunit-zsh/zunit/labels/docs) to find suggestions for what we'd love to see more documentation on. ### Improve issues @@ -20,30 +20,30 @@ Some issues are created with missing information, not reproducible, or plain inv We're always looking for more opinions on discussions in the issue tracker. It's a good opportunity to influence the future direction of ZUnit. -The [`question` label](https://github.com/molovo/zunit/labels/question) is a good place to find ongoing discussions. +The [`question` label](https://github.com/zunit-zsh/zunit/labels/question) is a good place to find ongoing discussions. ### Write code You can use issue labels to discover issues you could help out with: -* [`blocked` issues](https://github.com/molovo/zunit/labels/blocked) need help getting unstuck -* [`bug` issues](https://github.com/molovo/zunit/labels/bug) are known bugs we'd like to fix -* [`enhancement` issues](https://github.com/molovo/zunit/labels/enhancement) are features we're open to including -* [`performance` issues](https://github.com/molovo/zunit/labels/performance) track ideas on how to improve ZUnit’s performance +* [`blocked` issues](https://github.com/zunit-zsh/zunit/labels/blocked) need help getting unstuck +* [`bug` issues](https://github.com/zunit-zsh/zunit/labels/bug) are known bugs we'd like to fix +* [`enhancement` issues](https://github.com/zunit-zsh/zunit/labels/enhancement) are features we're open to including +* [`performance` issues](https://github.com/zunit-zsh/zunit/labels/performance) track ideas on how to improve ZUnit’s performance -The [`help wanted`](https://github.com/molovo/zunit/labels/help%20wanted) and [`good for beginner`](https://github.com/molovo/zunit/labels/good%20for%20beginner) labels are especially useful. +The [`help wanted`](https://github.com/zunit-zsh/zunit/labels/help%20wanted) and [`good for beginner`](https://github.com/zunit-zsh/zunit/labels/good%20for%20beginner) labels are especially useful. -You may find an issue is assigned, or has the [`assigned` label](https://github.com/molovo/zunit/labels/assigned). Please double-check before starting on this issue because somebody else is likely already working on it. +You may find an issue is assigned, or has the [`assigned` label](https://github.com/zunit-zsh/zunit/labels/assigned). Please double-check before starting on this issue because somebody else is likely already working on it. -We'd like to fix [`priority` issues](https://github.com/molovo/zunit/labels/priority) first. We'd love to see progress on [`low-priority` issues](https://github.com/molovo/zunit/labels/low%20priority) too. [`future` issues](https://github.com/molovo/zunit/labels/future) are those that we'd like to get to, but not anytime soon. Please check before working on these since we may not yet want to take on the burden of supporting those features. +We'd like to fix [`priority` issues](https://github.com/zunit-zsh/zunit/labels/priority) first. We'd love to see progress on [`low-priority` issues](https://github.com/zunit-zsh/zunit/labels/low%20priority) too. [`future` issues](https://github.com/zunit-zsh/zunit/labels/future) are those that we'd like to get to, but not anytime soon. Please check before working on these since we may not yet want to take on the burden of supporting those features. ### Hang out in our chat -We have a [chat](https://gitter.im/molovo/zunit). Jump in there and lurk, talk to us, and help others. +We have a [chat](https://gitter.im/zunit-zsh/zunit). Jump in there and lurk, talk to us, and help others. ## Submitting an issue -- The issue tracker is for issues. Use our [chat](https://gitter.im/molovo/zunit) for support. +- The issue tracker is for issues. Use our [chat](https://gitter.im/zunit-zsh/zunit) for support. - Search the issue tracker before opening an issue. - Ensure you're using the latest version of ZUnit. - Use a clear and descriptive title. diff --git a/src/commands/init.zsh b/src/commands/init.zsh index 5f8e68b..0cfd6f7 100644 --- a/src/commands/init.zsh +++ b/src/commands/init.zsh @@ -71,7 +71,7 @@ allow_risky: false" zsh install: - mkdir .bin - - curl -L https://github.com/molovo/zunit/releases/download/v$(_zunit_version)/zunit > .bin/zunit + - curl -L https://github.com/zunit-zsh/zunit/releases/download/v$(_zunit_version)/zunit > .bin/zunit - curl -L https://raw.githubusercontent.com/molovo/revolver/master/revolver > .bin/revolver - curl -L https://raw.githubusercontent.com/molovo/color/master/color.zsh > .bin/color before_script: diff --git a/src/reports/html.zsh b/src/reports/html.zsh index 3dd4c79..8185019 100644 --- a/src/reports/html.zsh +++ b/src/reports/html.zsh @@ -6,7 +6,7 @@ # The head of the HTML document used to display results ### function _zunit_html_header() { - echo ' ZUnit Test Results