File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ configuration:
219
219
[ Ruby] ( https://www.ruby-lang.org/en/ ) configuration:
220
220
221
221
* Add trusted binstubs to the ` PATH ` .
222
- * Load the ASDF version manager, falling back to rbenv if not installed .
222
+ * Load the ASDF version manager.
223
223
224
224
Shell aliases and scripts:
225
225
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ PATH="$HOME/.bin:/usr/local/sbin:$PATH"
5
5
if [ -d " $HOME /.asdf" ]; then
6
6
. $HOME /.asdf/asdf.sh
7
7
elif command -v rbenv > /dev/null; then
8
+ if [ -z $SILENCE_RBENV_DEPRECATION ]; then
9
+ echo " The thoughtbot dotfiles have deprecated the use of rbenv in favor" \
10
+ " of asdf (https://github.com/asdf-vm/asdf) and will be removed on or" \
11
+ " after December 8, 2017. Migrate to asdf or export" \
12
+ " SILENCE_RBENV_DEPRECATION=1 in your local dotfiles to silence this" \
13
+ " deprecation."
14
+ fi
15
+
8
16
eval " $( rbenv init - --no-rehash) "
9
17
fi
10
18
You can’t perform that action at this time.
0 commit comments