diff --git a/themes/bobthefish/README.md b/themes/bobthefish/README.md
index 07861ee0ae524fd2add0b46b9aba02cfcab595a5..619d0654c3bac352cea6c900e82e3bcad7ef8d13 100644
--- a/themes/bobthefish/README.md
+++ b/themes/bobthefish/README.md
@@ -28,6 +28,8 @@ This theme is based loosely on [agnoster][agnoster].
      * Background jobs (%)
      * You currently have superpowers ($)
  * User@Host (unless you're the default user)
+ * Current RVM or rbenv (Ruby) version
+ * Current virtualenv (Python) version
  * Abbreviated parent directory
  * Current directory, or Git or Mercurial project name
  * Current project's repo branch ( master) or detached head (➦ d0dfd9b)
diff --git a/themes/bobthefish/fish_prompt.fish b/themes/bobthefish/fish_prompt.fish
index 056457652ac6b5a0721ebb5aed909cd121d1c47a..c555ab711a7f6609773353bee96ba58bceb09c13 100644
--- a/themes/bobthefish/fish_prompt.fish
+++ b/themes/bobthefish/fish_prompt.fish
@@ -46,6 +46,7 @@ set __bobthefish_dk_green   0c4801
 set __bobthefish_lt_red     C99
 set __bobthefish_med_red    ce000f
 set __bobthefish_dk_red     600
+set __bobthefish_ruby_red   af0000
 
 set __bobthefish_slate_blue 255e87
 set __bobthefish_med_blue   005faf
@@ -337,6 +338,22 @@ function __bobthefish_prompt_virtualfish -d "Display activated virtual environme
   set_color normal
 end
 
+function __bobthefish_prompt_rubies -d 'Display current Ruby (rvm/rbenv)'
+  set -l ruby_version
+  if type rvm-prompt >/dev/null
+    set ruby_version (rvm-prompt i v g)
+  else if type rbenv >/dev/null
+    set ruby_version (rbenv version-name)
+    # Don't show global ruby version...
+    [ "$ruby_version" = (rbenv global) ]; and return
+  end
+  test -w "$ruby_version"; and return
+
+  __bobthefish_start_segment $__bobthefish_ruby_red $__bobthefish_lt_grey --bold
+  echo -n -s $ruby_version ' '
+  set_color normal
+end
+
 
 # ===========================
 # Apply theme
@@ -345,6 +362,7 @@ end
 function fish_prompt -d 'bobthefish, a fish theme optimized for awesome'
   __bobthefish_prompt_status
   __bobthefish_prompt_user
+  __bobthefish_prompt_rubies
   __bobthefish_prompt_virtualfish
 
   set -l git_root (__bobthefish_git_project_dir)