There are two ways to uninstall a particular version of Ruby. The easiest is to simply remove the directory from ~/.rbenv/versions:
$ rm -rf ~/.rbenv/versions/2.1.0
Alternatively, you can use the uninstall command, which does exactly the same thing:
$ rbenv uninstall 2.1.0
If this version ha...