class Boxen::Preflight::RVM

Public Instance Methods

ok?() click to toggle source
# File lib/boxen/preflight/rvm.rb, line 9
def ok?
  !File.exist? "#{ENV['HOME']}/.rvm"
end
run() click to toggle source
# File lib/boxen/preflight/rvm.rb, line 4
def run
  abort "You have an rvm installed in ~/.rvm.",
    "Boxen uses rbenv to install ruby, so please `rvm implode`"
end