Method: VMC::Detector#detect_runtimes

Defined in:
lib/vmc/detect.rb

#detect_runtimesObject

detect the language and return the appropriate runtimes



44
45
46
47
48
49
50
# File 'lib/vmc/detect.rb', line 44

def detect_runtimes
  if detected && lang = detected.language_name
    runtimes_for(lang)
  else
    []
  end
end