Ian Yang
6ca591ab75
restore original IFS for hooks
13年前
Mislav Marohnić
ab197ef51e
add tests for version commands
13年前
Alisdair Sullivan
497911d6c0
improve detection of completion support for commands
Enable JavasCript, Lua and Erlang scripts to provide completions
13年前
Mislav Marohnić
400fe31061
fix exec fails for invalid version
13年前
Mislav Marohnić
baf7656d2f
fix iterating through paths that have spaces in them
Fixes #344 , #196
13年前
Shohei Yamasaki
2bbf49b2f5
replace tab with spaces
13年前
Tim Pope
03fa148e81
Don't duplicate shims in PATH
13年前
Mislav Marohnić
ea3203dbab
fix resolving symlinks in rbenv-hooks
13年前
Mislav Marohnić
bb6bccb782
tests galore
13年前
Mislav Marohnić
1fe59e41ea
error message when rehash fails on non-writable directory
Fixes #238
13年前
YanhaoYang
13f36e0416
rbenv(): preserve multiline output of `sh-*` commands
13年前
Sam Stephenson
e3f72ebae2
Guard against exported `CDPATH` ( fixes #316 )
13年前
Sam Stephenson
98f45695db
Suppress shell warnings when hashing is disabled by `set +h`
13年前
Sam Stephenson
3cb95b4d2d
Add `rbenv --debug <command>` as a shortcut for setting RBENV_DEBUG=1
13年前
Sam Stephenson
892aea138e
Export PS4 when RBENV_DEBUG is set for more informative debug output
13年前
Leo Cassarani
1d687ac734
Fix incorrect formatting of rbenv-help output under MAWK
In systems that use the MAWK interpreter (the default AWK installed with
Ubuntu), the output of `rbenv help <command>` would have no line breaks.
The issue is fixed by changing `gsub` to `sub` in the snippet of awk
commands that are used to extract documentation comments.
I suspect the bug is something to do with the way the '^' and '$'
characters are interpreted by different AWK interpreters (per-line vs
per-string anchors).
If I understand correctly, the purpose of trim() is to remove all line
breaks from the start and end of each sections of a command's
documentation, in which case `sub` should serve the same purpose.
13年前
Mislav Marohnić
cd940bd797
typo in docs
13年前
Sam Stephenson
9375e99f92
rbenv 0.4.0
13年前
Sam Stephenson
266d896871
Prioritize `rbenv local` over `rbenv global` and `rbenv shell`
13年前
Sam Stephenson
e56885f4c9
"binary" -> "executable"
13年前
Sam Stephenson
149f4b4607
"per-project" -> "application-specific"
13年前
Sam Stephenson
919c4240fc
Clarify that .rbenv-version is removed when migrating
13年前
Sam Stephenson
44c2378f2a
Shims include the full path to rbenv
This makes it possible to execute rbenv shims without rbenv's bin
directory in the path.
13年前
Sam Stephenson
d2a8ca7d89
Tweak the ruby- prefix warning
13年前
Sam Stephenson
d4faae187a
Read both .ruby-version and .rbenv-version, but write (and migrate to) .ruby-version
13年前
Sam Stephenson
5e52fae7c1
Accept "ruby-" version prefix but print a warning to stderr
13年前
Sam Stephenson
b974bf54dc
Prefer .ruby-version to .rbenv-version for reading local versions
13年前
Sam Stephenson
4b6c91e827
Usage consistency
13年前
Sam Stephenson
51467dc4a3
Include `install` and `uninstall` in help if ruby-build is installed
13年前
Sam Stephenson
37eca782cc
Documentation tweaks
13年前
Sam Stephenson
19666f2598
Wrap documentation comments at 70 columns
13年前
Mislav Marohnić
3436bddaea
new-style documentation for most commands
13年前
Mislav Marohnić
5cc6b0e3d3
allow indented lines in help text
Before, lines of help that were indented were stripped away.
13年前
Mislav Marohnić
2b21e22e97
display help for commands that have Summary but not Usage
A command doesn't have to specify Usage docs if it doesn't accept any
arguments. The default usage for a command will be printed as:
Usage: rbenv ${command}
13年前
Sam Stephenson
57df945738
Don't print version before help summary (bare `rbenv` already does this)
13年前
Sam Stephenson
e2e474c59d
Add `rbenv help --usage`
13年前
Sam Stephenson
4c19dc22d7
Improve syntax for inline documentation and allow for multi-line usage
13年前
Mislav Marohnić
8ee2f2657a
avoid prepending system ruby to PATH
System ruby is already on PATH (that's the definition of system ruby) and by
duplicating its path by putting it in front, we can break the user's
environment.
Fixes #275
13年前
Sam Stephenson
811ca05916
Run `hash -r` after `rbenv rehash` when shell integration is enabled
Fixes #119
13年前
Sam Stephenson
df9bbd7ab3
Speed up rbenv-rehash with a simpler indexing approach
13年前
Sam Stephenson
339e331f1d
Ensure outdated shims are removed first when rehashing
13年前
Sam Stephenson
283e67b57e
When the ruby shim is invoked with a script, set RBENV_DIR to the script's dirname
13年前
Sam Stephenson
6c1fb9ffd0
Fall back to $PWD if a local version file can't be found in $RBENV_DIR
13年前
Sam Stephenson
1ebcbd92e2
Tweak `rbenv --version` output
13年前
Mislav Marohnić
3060578e3b
use `typeset` instead of `local` in rbenv() function
This is to insure portability to ksh.
Fixes #205 , references #209
13年前
Mislav Marohnić
b8715bfee6
foundation for a help system where each command holds its own docs
Docs are comprised from "Usage", "Summary" and "Help" sections, where
"Help" can span multiple commented lines. If it is missing, "Summary" is
shown in its place.
References #204 , references #206
13年前
Sam Stephenson
7fe9231e64
Fix `rbenv prefix` for `system` version
Should be `/usr` or `/usr/local`, not `/usr/bin` or `/usr/local/bin`
13年前
Sam Stephenson
9289af0132
Don't include `system` in `rbenv versions --bare` output
13年前
Mislav Marohnić
1f7722088d
make `shell` return an error code in case of failure
Fixes #274
13年前
Mislav Marohnić
e548877ead
have `versions` also list "system" if it exists
Closes #263
13年前