mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
update urls to rbenv
This commit is contained in:
parent
f0e8bdcdaf
commit
df4c16ecb4
4 changed files with 6 additions and 6 deletions
|
@ -158,7 +158,7 @@ easy to fork and contribute any changes back upstream.
|
||||||
1. Check out rbenv into `~/.rbenv`.
|
1. Check out rbenv into `~/.rbenv`.
|
||||||
|
|
||||||
~~~ sh
|
~~~ sh
|
||||||
$ git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
|
$ git clone https://github.com/rbenv/rbenv.git ~/.rbenv
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
2. Add `~/.rbenv/bin` to your `$PATH` for access to the `rbenv`
|
2. Add `~/.rbenv/bin` to your `$PATH` for access to the `rbenv`
|
||||||
|
@ -444,7 +444,7 @@ name | default | description
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
The rbenv source code is [hosted on
|
The rbenv source code is [hosted on
|
||||||
GitHub](https://github.com/sstephenson/rbenv). It's clean, modular,
|
GitHub](https://github.com/rbenv/rbenv). It's clean, modular,
|
||||||
and easy to understand, even if you're not a shell hacker.
|
and easy to understand, even if you're not a shell hacker.
|
||||||
|
|
||||||
Tests are executed using [Bats](https://github.com/sstephenson/bats):
|
Tests are executed using [Bats](https://github.com/sstephenson/bats):
|
||||||
|
|
|
@ -16,7 +16,7 @@ export RBENV_DIR="${1%/*}"
|
||||||
|
|
||||||
[ -n "$RBENV_SILENCE_WARNINGS" ] || {
|
[ -n "$RBENV_SILENCE_WARNINGS" ] || {
|
||||||
echo "rbenv: \`ruby-local-exec' is deprecated and will be removed in the next release."
|
echo "rbenv: \`ruby-local-exec' is deprecated and will be removed in the next release."
|
||||||
echo " To upgrade: https://github.com/sstephenson/rbenv/wiki/ruby-local-exec"
|
echo " To upgrade: https://github.com/rbenv/rbenv/wiki/ruby-local-exec"
|
||||||
echo
|
echo
|
||||||
} >&2
|
} >&2
|
||||||
|
|
||||||
|
|
|
@ -152,7 +152,7 @@ if [ -z "$1" ] || [ "$1" == "rbenv" ]; then
|
||||||
print_summaries commands local global shell install uninstall rehash version versions which whence
|
print_summaries commands local global shell install uninstall rehash version versions which whence
|
||||||
echo
|
echo
|
||||||
echo "See \`rbenv help <command>' for information on a specific command."
|
echo "See \`rbenv help <command>' for information on a specific command."
|
||||||
echo "For full documentation, see: https://github.com/sstephenson/rbenv#readme"
|
echo "For full documentation, see: https://github.com/rbenv/rbenv#readme"
|
||||||
else
|
else
|
||||||
command="$1"
|
command="$1"
|
||||||
if [ -n "$(command_path "$command")" ]; then
|
if [ -n "$(command_path "$command")" ]; then
|
||||||
|
|
|
@ -49,7 +49,7 @@ git_commit() {
|
||||||
mkdir -p "$RBENV_ROOT"
|
mkdir -p "$RBENV_ROOT"
|
||||||
cd "$RBENV_ROOT"
|
cd "$RBENV_ROOT"
|
||||||
git init
|
git init
|
||||||
git remote add origin https://github.com/sstephenson/rbenv.git
|
git remote add origin https://github.com/rbenv/rbenv.git
|
||||||
git_commit
|
git_commit
|
||||||
git tag v0.4.1
|
git tag v0.4.1
|
||||||
git_commit
|
git_commit
|
||||||
|
@ -65,7 +65,7 @@ git_commit() {
|
||||||
mkdir -p "$RBENV_ROOT"
|
mkdir -p "$RBENV_ROOT"
|
||||||
cd "$RBENV_ROOT"
|
cd "$RBENV_ROOT"
|
||||||
git init
|
git init
|
||||||
git remote add origin https://github.com/sstephenson/rbenv.git
|
git remote add origin https://github.com/rbenv/rbenv.git
|
||||||
git_commit
|
git_commit
|
||||||
|
|
||||||
cd "$RBENV_TEST_DIR"
|
cd "$RBENV_TEST_DIR"
|
||||||
|
|
Loading…
Reference in a new issue