2014-02-10 13:30:58 -05:00
from __future__ import print_function
2014-01-03 13:32:13 -05:00
__author__ = u ' root '
import dependency
import configuration
import shutil
import errors
import subprocess
from which import which
class Ruby ( dependency . Dependency ) :
def __init__ ( self , config ) :
self . config = config
assert isinstance ( config , configuration . Configuration )
is_ruby_installed = self . check_if_ruby_exists ( )
is_gem_installed = self . check_if_gem_exists ( )
if is_ruby_installed and not is_gem_installed :
#this means their ruby is so old that RubyGems isn't packaged with it
raise errors . CoCoError ( u " You have an extremely old version of Ruby. Please upgrade it to get RubyGems. " )
elif not is_ruby_installed :
self . install_ruby ( )
elif is_ruby_installed and is_gem_installed :
2014-02-10 13:30:58 -05:00
print ( u " Ruby found. " )
2014-01-03 13:32:13 -05:00
def check_if_ruby_exists ( self ) :
ruby_path = which ( u " ruby " )
return bool ( ruby_path )
def check_if_gem_exists ( self ) :
gem_path = which ( u " gem " )
return bool ( gem_path )
def install_ruby ( self ) :
operating_system = self . config . system . operating_system
#Ruby is on every recent Mac, most Linux distros
if operating_system == u " windows " :
self . install_ruby_on_windows ( )
elif operating_system == u " mac " :
raise errors . CoCoError ( u " Ruby should be installed with Mac OSX machines. Please install Ruby. " )
elif operating_system == u " linux " :
2014-03-31 18:03:34 -04:00
raise errors . CoCoError ( u " Please install Ruby (try ' sudo apt-get install ruby ' ). \n If you are not using Ubuntu then please see your Linux Distribution ' s documentation for help installing ruby. " )
2014-01-03 13:32:13 -05:00
def install_ruby_on_windows ( self ) :
raise NotImplementedError
def install_gems ( self ) :
2014-03-29 16:08:55 -04:00
gem_install_status = subprocess . call ( [ u " gem " , u " install " , u " --no-user-install " , u " sass " ] )