From c3e8ee6e3278640fa21d223fd539719395856a2b Mon Sep 17 00:00:00 2001
From: Justin Hileman <justin@justinhileman.info>
Date: Sun, 31 May 2015 08:30:48 -0700
Subject: [PATCH] [split] Move chruby plugin to oh-my-fish/plugin-chruby

https://github.com/oh-my-fish/plugin-chruby
---
 plugins/chruby/README.md   |  9 ---------
 plugins/chruby/chruby.load | 23 -----------------------
 2 files changed, 32 deletions(-)
 delete mode 100644 plugins/chruby/README.md
 delete mode 100644 plugins/chruby/chruby.load

diff --git a/plugins/chruby/README.md b/plugins/chruby/README.md
deleted file mode 100644
index cb4423e..0000000
--- a/plugins/chruby/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-## chruby plugin
-
-Depends on `chruby-fish`: https://github.com/JeanMertz/chruby-fish
-
-set `CHRUBY_AUTO_ENABLED` to `false` to disable auto loading Ruby versions on
-directory change.
-
-set `CHRUBY_ROOT` to point to the root path of chruby. The path will be
-appended by `share/chruby/chruby.fish` and `share/chruby/auto.fish`.
diff --git a/plugins/chruby/chruby.load b/plugins/chruby/chruby.load
deleted file mode 100644
index eaf397d..0000000
--- a/plugins/chruby/chruby.load
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# Depends on `chruby-fish` (https://github.com/JeanMertz/chruby-fish)
-#
-# set `CHRUBY_AUTO_ENABLED` to `false` to disable auto loading Ruby versions on
-# directory change.
-#
-# set `CHRUBY_ROOT` to point to the root path of chruby. The path will be
-# appended by `share/chruby/chruby.fish` and `share/chruby/auto.fish`.
-#
-set -q CHRUBY_ROOT; or set CHRUBY_ROOT /usr/local
-
-if test -f "$CHRUBY_ROOT/share/chruby/chruby.fish"
-  . "$CHRUBY_ROOT/share/chruby/chruby.fish"
-else
-  echo '`chruby` plugin loaded but chruby-fish not installed.' \
-       'See: https://github.com/JeanMertz/chruby-fish'
-end
-
-if test "$CHRUBY_AUTO_ENABLED" != "false" -a \
-        -f "$CHRUBY_ROOT/share/chruby/auto.fish"
-
-  . "$CHRUBY_ROOT/share/chruby/auto.fish"
-end
-- 
GitLab